mirror of https://github.com/postgres/postgres
Because they are not available we've used _fileno(stdin) in some places, but that doesn't reliably work, because stdin might be closed. This is the prerequisite of the subsequent commit, fixing a failure introduced inpull/94/head76e38b37a5. Author: Andres Freund <andres@anarazel.de> Reported-By: Sandeep Thakkar <sandeep.thakkar@enterprisedb.com> Message-Id: 20220520164558.ozb7lm6unakqzezi@alap3.anarazel.de (on pgsql-packagers) Backpatch: 15-, where76e38b37a5came in
parent
0778eb79b1
commit
c290e79cf0
@ -1 +1,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 |
||||
|
||||
Loading…
Reference in new issue