Fix fcntl.h shim since HP-UX 11.31 (ia64) does not define O_CLOEXEC

This commit is contained in:
kinichiro 2017-01-19 09:58:21 +09:00
parent 3b2560feb3
commit b249f68e6c

View File

@ -17,6 +17,8 @@
#include_next <fcntl.h>
#endif
#endif
#ifndef O_NONBLOCK
#define O_NONBLOCK 0x100000
#endif
@ -28,5 +30,3 @@
#ifndef FD_CLOEXEC
#define FD_CLOEXEC 1
#endif
#endif