fb936f89b8
- S_IRGRP and S_IROTH should be defined in sys/stat.h rather than fcntl.h - Old MinGW64 on Ubuntu 14.04 appears not to have S_IRGRP and S_IROTH - MinGW64 has __WIN32 defined but does not have _MSC_VER defined
33 lines
425 B
C
33 lines
425 B
C
/*
|
|
* Public domain
|
|
* fcntl.h compatibility shim
|
|
*/
|
|
|
|
#ifndef _WIN32
|
|
#include_next <fcntl.h>
|
|
#else
|
|
|
|
#ifdef _MSC_VER
|
|
#if _MSC_VER >= 1900
|
|
#include <../ucrt/fcntl.h>
|
|
#else
|
|
#include <../include/fcntl.h>
|
|
#endif
|
|
#else
|
|
#include_next <fcntl.h>
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef O_NONBLOCK
|
|
#define O_NONBLOCK 0x100000
|
|
#endif
|
|
|
|
#ifndef O_CLOEXEC
|
|
#define O_CLOEXEC 0x200000
|
|
#endif
|
|
|
|
#ifndef FD_CLOEXEC
|
|
#define FD_CLOEXEC 1
|
|
#endif
|