unistd.h 240 B

123456789
  1. /* src/include/port/win32_msvc/unistd.h */
  2. /*
  3. * MSVC does not define these, nor does _fileno(stdin) etc reliably work
  4. * (returns -1 if stdin/out/err are closed).
  5. */
  6. #define STDIN_FILENO 0
  7. #define STDOUT_FILENO 1
  8. #define STDERR_FILENO 2