SYSTEM.H 238 B

123456789101112131415
  1. #ifdef MSDOS
  2. #include <stdlib.h>
  3. #include <io.h>
  4. #endif /* MSDOS */
  5. #ifdef USG
  6. #include <string.h>
  7. #else /* not USG */
  8. #ifdef MSDOS
  9. #include <string.h>
  10. #else
  11. #include <strings.h>
  12. #endif /* not MSDOS */
  13. #endif /* not USG */