From 51a53876b623f751e076fa66cdf2b99df06b2028 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Sun, 15 Jan 2017 22:28:36 -0600 Subject: add fcntl shim --- include/compat/fcntl.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 include/compat/fcntl.h (limited to 'include/compat') diff --git a/include/compat/fcntl.h b/include/compat/fcntl.h new file mode 100644 index 0000000..99c2d58 --- /dev/null +++ b/include/compat/fcntl.h @@ -0,0 +1,32 @@ +/* + * Public domain + * fcntl.h compatibility shim + */ + +#ifndef _WIN32 +#include_next +#else + +#ifdef _MSC_VER +#if _MSC_VER >= 1900 +#include <../ucrt/fcntl.h> +#else +#include <../include/fcntl.h> +#endif +#else +#include_next +#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 + +#endif -- cgit v1.2.3-55-g6feb