home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / icon / dos / src / config / msdos / highc / define.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-09  |  923 b   |  41 lines

  1. #define HostStr "PC 386 in 32-bit protected mode"
  2. #define IconAlloc
  3. #define KeyboardFncs
  4. #define Precision 16
  5. #define IcodeSuffix ".icx"
  6. #define SystemFnc
  7. #define SysTime <sys/time.h>
  8. #define Standard
  9.  
  10. /*
  11.  * The default regions sizes for this implementation are much larger
  12.  *  than for most implementations.
  13.  */
  14.  
  15. #define MaxAbrSize   512000
  16. #define MaxStrSpace  256000
  17. #define QualLstSize   16384
  18.  
  19. /*
  20.  * MetaWare's HighC 386 version 1.6 include files use "const" keyword
  21.  * in prototypes.  This clashes with Icon's prototypes.
  22.  */
  23. #define const
  24.  
  25. /*
  26.  * MetaWare's HighC 386 macro putc doesn't handle putc('\n') correctly -
  27.  * sometimes a CR is not written out before the LF.  So, redefine
  28.  * macro putc to actually issue an fputc.
  29.  */
  30. #undef putc
  31. #define putc(c,f) fputc(c,f)
  32.  
  33. #define index strchr
  34. #define rindex strrchr
  35. #define unlink remove
  36.  
  37. #undef HIGHC_386
  38. #define HIGHC_386 1
  39.  
  40.  
  41.