home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Tex / Tex31 / texsrc.lzh / DEFAULTS.H < prev    next >
C/C++ Source or Header  |  1990-07-08  |  1KB  |  32 lines

  1. /* More configuration definitions for web2c.  Unlike those in site.h,
  2.    you need not and should not change these.  If you do, then (a) tell
  3.    the people listed in README why you need to change them, and (b) be
  4.    prepared for everything to fail.  */
  5.  
  6. /* Define if you're running under MS-DOS with Microsoft C.  (This port
  7.    is not complete.)  */
  8. #ifndef MS_DOS
  9. #undef    MS_DOS
  10. #endif
  11.  
  12. /* These types can be basically anything, so they don't need to be put in
  13.    site.h.  Despite the dire warning above, probably nothing bad will
  14.    happen if you change them -- but you shouldn't need to.  */
  15. typedef char boolean;
  16. typedef double real;
  17.  
  18. /* The maximum length of a filename including a directory specifier.  */
  19. #define    FILENAMESIZE 512
  20.  
  21.  
  22. /* Hack to get around High C on an IBM RT treating `char' differently
  23.    than normal compilers, etc.   */
  24.  
  25. #if defined(__HIGHC__) && defined(ibm032)
  26. pragma    Off(Char_default_unsigned);
  27. pragma    On(Char_is_rep);
  28. pragma    On(Parm_warnings);
  29. pragma    On(Pointers_compatible);
  30. pragma    On(Pointers_compatible_with_ints);
  31. #endif    /* __HIGHC__ && ibm032 */
  32.