unixio_gcc.h 464 B

12345678910111213141516171819202122232425262728
  1. /* 2004-12-12 SMS.
  2. *
  3. * Emergency replacement UNIXIO.H for GNU C, for use as needed.
  4. * Install as GNU_CC_INCLUDE:[000000]UNIXIO.H
  5. */
  6. #ifndef __UNIXIO_LOADED
  7. #define __UNIXIO_LOADED 1
  8. #include <sys/types.h>
  9. #include <stdlib.h>
  10. #ifndef SEEK_SET
  11. # define SEEK_SET 0
  12. #endif /* ndef SEEK_SET */
  13. #ifndef SEEK_CUR
  14. # define SEEK_CUR 1
  15. #endif /* ndef SEEK_CUR */
  16. #ifndef SEEK_END
  17. # define SEEK_END 2
  18. #endif /* ndef SEEK_END */
  19. #endif /* ndef __UNIXIO_LOADED */