xref: /386bsd/usr/src/usr.bin/awk/config.h (revision a2142627)
1 /********************************************
2 386bsd.h
3 copyright 1993, Michael D. Brennan
4 
5 This is a source file for mawk, an implementation of
6 the AWK programming language.
7 
8 Mawk is distributed without warranty under the terms of
9 the GNU General Public License, version 2, 1991.
10 ********************************************/
11 
12 
13 /*
14  * $Log: 386bsd.h,v $
15  * Revision 1.1  1993/02/05  02:20:10  mike
16  * Initial revision
17  *
18  */
19 
20 #ifndef   CONFIG_H
21 #define   CONFIG_H    1
22 
23 #define   FPE_TRAPS_ON                1
24 #define   FPE_ZERODIVIDE   FPE_FLTDIV_TRAP
25 #define   FPE_OVERFLOW     FPE_FLTOVF_TRAP
26 
27 #define   HAVE_STRTOD		0
28 
29 #define   HAVE_MATHERR		0
30 
31 #define   DONT_PROTO_OPEN
32 
33 #include "config/Idefault.h"
34 
35 #endif  /* CONFIG_H  */
36