From d7a4f9ef8d62f709d21cf66ece09456714f7c6f1 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 2 Aug 2015 12:15:30 -0700 Subject: include fcntl.h on all *nix platforms (closes #24217) Patch by Jeffrey Armstrong. --- Modules/mmapmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 0784350..8fdf7f7 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -23,9 +23,9 @@ #ifndef MS_WINDOWS #define UNIX -# ifdef __APPLE__ +# ifdef HAVE_FCNTL_H # include -# endif +# endif /* HAVE_FCNTL_H */ #endif #ifdef MS_WINDOWS -- cgit v0.12