blob: 78b772f590e64a317e027ad2d1052be9f3f15dbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/********************************************
sysV.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.
********************************************/
/*
This is for sysVR3+
without IEEE754 floating point
Even with IEEE754 hardware e.g. a 80x87 or 486
you might need this, because the math library doesn't
support the hardware.
tested on SCO UNIX VR3.2v2.0
*/
/*$Log: sysV.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:40 brennan
* VERSION 1.0
*
* Revision 1.2 91/08/13 09:04:15 brennan
* VERSION .9994
*
* Revision 1.1 91/08/03 05:49:52 brennan
* Initial revision
*
*/
#ifndef CONFIG_H
#define CONFIG_H 1
#define FPE_TRAPS_ON 1
#define NOINFO_SIGFPE 1
#include "config/Idefault.h"
#endif /* CONFIG_H */
|