1993-03-21 12:45:37 +03:00
|
|
|
/********************************************
|
1993-07-03 03:56:52 +04:00
|
|
|
386bsd.h
|
|
|
|
copyright 1993, Michael D. Brennan
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
********************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1993-07-03 03:56:52 +04:00
|
|
|
* $Log: config.h,v $
|
|
|
|
* Revision 1.3 1993/07/02 23:57:10 jtc
|
|
|
|
* Updated to mawk 1.1.4
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
1993-07-03 03:56:52 +04:00
|
|
|
* Revision 1.1 1993/02/05 02:20:10 mike
|
1993-03-21 12:45:37 +03:00
|
|
|
* Initial revision
|
|
|
|
*
|
1993-03-21 21:04:42 +03:00
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#ifndef CONFIG_H
|
1993-07-03 03:56:52 +04:00
|
|
|
#define CONFIG_H 1
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-07-03 03:56:52 +04:00
|
|
|
#define FPE_TRAPS_ON 1
|
|
|
|
#define FPE_ZERODIVIDE FPE_FLTDIV_TRAP
|
|
|
|
#define FPE_OVERFLOW FPE_FLTOVF_TRAP
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
#define HAVE_STRTOD 1
|
1993-07-03 03:56:52 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#define HAVE_MATHERR 0
|
|
|
|
|
1993-07-03 03:56:52 +04:00
|
|
|
#define DONT_PROTO_OPEN
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#include "config/Idefault.h"
|
|
|
|
|
|
|
|
#endif /* CONFIG_H */
|