2 /********************************************
4 copyright 1991, Michael D. Brennan
6 This is a source file for mawk, an implementation of
7 the AWK programming language.
9 Mawk is distributed without warranty under the terms of
10 the GNU General Public License, version 2, 1991.
11 ********************************************/
13 /* Microsoft C 6.0A under MSDOS */
16 * Revision 4.3 92/01/09 08:54:09 brennan
17 * changed SAMESEG macro
19 * Revision 4.2 91/10/29 09:36:59 brennan
31 #define HAVE_STDARG_H 1
32 #define HAVE_STDLIB_H 1
34 #define FPE_TRAPS_ON 1
35 #define NOINFO_SIGFPE 1
37 #ifndef HAVE_SMALL_MEMORY /* allow large model override */
38 #define HAVE_SMALL_MEMORY 1
41 #if HAVE_SMALL_MEMORY==0
42 /* how to test far pointers have the same segment */
43 #define SAMESEG(p,q) \
44 (((unsigned long)(p)^(unsigned long)(q))<0x10000L)
47 #include "config/Idefault.h"