home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gawk-2.15.6-src.tgz / tar.out / fsf / gawk / atari / config.h next >
C/C++ Source or Header  |  1996-09-28  |  851b  |  34 lines

  1. /* 
  2.  * config.h for Atari ST.
  3.  * Assumes gcc compiler and TOS libraries.
  4.  * Edited by hand from a config.h generated automatically by configure.
  5.  */
  6.  
  7. /* Default path for Awk library */
  8. #define DEFPATH    ".,c:\\lib\\awk,c:\\gnu\\lib\\awk"
  9. /* Path separator in use */
  10. #define ENVSEP    ','
  11. #define SZTC (size_t)
  12. #define INTC (int)
  13.  
  14. #define STDC_HEADERS 1  /* have the usual ANSI header files */
  15. #undef    REGEX_MALLOC    /* use alloca in regex.c */
  16.  
  17. #undef    __CHAR_UNSIGNED__    /* default char is signed */
  18.  
  19. /*
  20.  * srandom already has a prototype defined - don't redefine it
  21.  */
  22. #define SRANDOM_PROTO    1
  23.  
  24. #undef    _POSIX_SOURCE    /* on Minix, used to get Posix functions */
  25. #undef    _MINIX        /* on Minix, used to get Posix functions */
  26. #undef    _POSIX_1_SOURCE    /* on Minix, define to 2 */
  27.  
  28. /*
  29.  * define const to nothing if not __STDC__
  30.  */
  31. #ifndef __STDC__
  32. #define const
  33. #endif
  34.