home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 4.ddi / BISON.ZIP / SYSTEM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-16  |  331 b   |  19 lines

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