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