aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Simon Marlow <marlowsd@gmail.com>2009-12-16 10:41:54 +0000
committerGravatar Simon Marlow <marlowsd@gmail.com>2009-12-16 10:41:54 +0000
commitbe3f3a07e92f19d3507dcc48ab68b0320919b8e6 (patch)
tree0d8abb97f548a2a7f766cc76580fc49f28468ea8
parent2a96023b319066f04d684bd43767fbc245f8e325 (diff)
#include <fcntl.h>, not <sys/fcntl.h> (#3723)
-rw-r--r--System/Posix/SharedMem.hsc2
1 files changed, 1 insertions, 1 deletions
diff --git a/System/Posix/SharedMem.hsc b/System/Posix/SharedMem.hsc
index 863b740..bc80063 100644
--- a/System/Posix/SharedMem.hsc
+++ b/System/Posix/SharedMem.hsc
@@ -21,7 +21,7 @@ module System.Posix.SharedMem
#include <sys/types.h>
#include <sys/mman.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
#include "HsUnix.h"