50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
|
|
/********************************************
|
|
sysV_ieeefp.h
|
|
copyright 1991, Michael D. Brennan
|
|
|
|
This is a source file for mawk, an implementation of
|
|
the AWK programming language.
|
|
|
|
Mawk is distributed without warranty under the terms of
|
|
the GNU General Public License, version 2, 1991.
|
|
********************************************/
|
|
|
|
|
|
/* $Log: sysV_ieeefp.h,v $
|
|
/* Revision 1.1.1.1 1993/03/21 09:45:37 cgd
|
|
/* initial import of 386bsd-0.1 sources
|
|
/*
|
|
* Revision 4.1 91/09/25 11:41:45 brennan
|
|
* VERSION 1.0
|
|
*
|
|
* Revision 1.3 91/09/10 09:19:41 brennan
|
|
* fixed comment typo
|
|
*
|
|
* Revision 1.2 91/08/13 09:04:17 brennan
|
|
* VERSION .9994
|
|
*
|
|
* Revision 1.1 91/07/03 06:36:41 brennan
|
|
* Initial revision
|
|
*
|
|
*/
|
|
|
|
/* This is the config.h file for
|
|
SystemV R3+
|
|
with IEEE754 floating point
|
|
**and a math library that supports ieee754**
|
|
|
|
This should work on SysV R3+ systems on i386 or i486
|
|
compiled and tested on:
|
|
|
|
*/
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H 1
|
|
|
|
|
|
#define TURN_OFF_FPE_TRAPS() (void) fpsetmask(0)
|
|
|
|
#include "config/Idefault.h"
|
|
#endif /* CONFIG_H */
|