summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaroslav Kolomiiets <yarikos@gmail.com>2017-02-27 17:42:37 +0200
committerYaroslav Kolomiiets <yarikos@gmail.com>2017-02-27 17:42:37 +0200
commit3f109ae805b51b175046c161d926a894b5a5fcc1 (patch)
treeaa62808e71f39f72adf9eeb3d87987bf040eb132
parent2284680be58c8b783d8257d1ca36fc214b574d1e (diff)
emu/port/devfs-posix.c: POSIXly include fcntl.h
-rw-r--r--emu/port/devfs-posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/emu/port/devfs-posix.c b/emu/port/devfs-posix.c
index 02c842f4..14cce877 100644
--- a/emu/port/devfs-posix.c
+++ b/emu/port/devfs-posix.c
@@ -9,7 +9,7 @@
#include <sys/types.h>
#include <sys/stat.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <utime.h>