home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / bison / bison1~1.zoo / system.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-25  |  327 b   |  22 lines

  1. #ifdef atarist
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <memory.h>
  5. #include <string.h>
  6. #endif
  7.  
  8. #ifdef MSDOS
  9. #include <stdlib.h>
  10. #include <io.h>
  11. #endif /* MSDOS */
  12.  
  13. #ifdef USG
  14. #include <string.h>
  15. #else /* not USG */
  16. #ifdef MSDOS
  17. #include <string.h>
  18. #else
  19. #include <strings.h>
  20. #endif /* not MSDOS */
  21. #endif /* not USG */
  22.