home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / GNU / MAWK11AS.ZIP / CONFIG / MSC_DOS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-09  |  1.1 KB  |  51 lines

  1.  
  2. /********************************************
  3. msc_dos.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /* Microsoft C 6.0A under MSDOS */
  14.  
  15. /*$Log:    msc_dos.h,v $
  16.  * Revision 4.3  92/01/09  08:54:09  brennan
  17.  * changed SAMESEG macro
  18.  * 
  19.  * Revision 4.2  91/10/29  09:36:59  brennan
  20.  * Large model macro
  21.  * 
  22. */
  23.  
  24. #ifndef   CONFIG_H
  25. #define   CONFIG_H      1
  26.  
  27. #define   MSDOS_MSC        1
  28. #define   MSDOS                 1
  29.  
  30. #define   HAVE_PROTOS           1
  31. #define   HAVE_STDARG_H         1
  32. #define   HAVE_STDLIB_H        1
  33.  
  34. #define   FPE_TRAPS_ON        1
  35. #define   NOINFO_SIGFPE        1
  36.  
  37. #ifndef   HAVE_SMALL_MEMORY   /* allow large model override */
  38. #define   HAVE_SMALL_MEMORY     1
  39. #endif
  40.  
  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)
  45. #endif
  46.  
  47. #include "config/Idefault.h"
  48.  
  49.  
  50. #endif  /* CONFIG_H  */
  51.