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 /* Turbo C under MSDOS */
15 /* $Log: tcc_dos.h,v $
16 * Revision 4.2 91/10/29 09:37:54 brennan
19 * Revision 4.1 91/09/25 11:41:51 brennan
22 * Revision 3.2 91/08/13 09:04:19 brennan
25 * Revision 3.1 91/06/07 10:38:51 brennan
36 #define HAVE_STDARG_H 1
37 #define HAVE_STDLIB_H 1
41 /* Turbo C float lib bungles comparison of NaNs so we
42 have to keep traps on */
45 #define FPE_TRAPS_ON 1
46 #define FPE_ZERODIVIDE 131
47 #define FPE_OVERFLOW 132
50 #ifndef HAVE_SMALL_MEMORY /* allow large model override */
51 #define HAVE_SMALL_MEMORY 1
54 #if HAVE_SMALL_MEMORY==0
55 /* how to test far pointers have the same segment */
57 #define SAMESEG(p,q) (FP_SEG(p)==FP_SEG(q))
60 #include "config/Idefault.h"