home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / Bison.sit.hqx / Bison / Source / system.h < prev    next >
Text File  |  1992-08-21  |  624b  |  28 lines

  1. /***********************************************************
  2.  *
  3.  * Macintosh/MPW version of GNU Bison 1.18
  4.  * Please read the README_MPW file for more information
  5.  *
  6.  ***********************************************************/
  7.  
  8. #if defined( MSDOS ) || defined( macintosh )
  9. #include <stdlib.h>
  10. #ifndef macintosh
  11. #include <io.h>
  12. #endif /* not Macintosh */
  13. #endif /* MSDOS || Macintosh */
  14.  
  15. #ifdef USG
  16. #include <string.h>
  17. #else /* not USG */
  18. #if defined( MSDOS ) || defined( macintosh )
  19. #include <string.h>
  20. #else
  21. #include <strings.h>
  22. #endif /* not MSDOS */
  23. #endif /* not USG */
  24.  
  25. #ifdef macintosh
  26. #define STDC_HEADERS 1
  27. #endif
  28.