unistd.h 267 B

123456789101112131415
  1. /*
  2. * This file is part of the Mingw32 package.
  3. *
  4. * unistd.h maps (roughly) to io.h
  5. */
  6. #ifndef __STRICT_ANSI__
  7. # ifndef __MINGW32__
  8. # include <io.h>
  9. # include <process.h>
  10. # else
  11. # include_next <unistd.h>
  12. # endif /* __MINGW32__ */
  13. #endif /* __STRICT_ANSI__ */