minios: Add missing fcntl.h.
authorKeir Fraser <keir.fraser@citrix.com>
Wed, 9 Jul 2008 15:00:05 +0000 (16:00 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Wed, 9 Jul 2008 15:00:05 +0000 (16:00 +0100)
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
extras/mini-os/include/posix/fcntl.h [new file with mode: 0644]

diff --git a/extras/mini-os/include/posix/fcntl.h b/extras/mini-os/include/posix/fcntl.h
new file mode 100644 (file)
index 0000000..ecfd8c8
--- /dev/null
@@ -0,0 +1,11 @@
+#ifndef _POSIX_FCNTL_H
+#define _POSIX_FCNTL_H
+
+#include_next <fcntl.h>
+
+#define F_ULOCK 0
+#define F_LOCK  1
+#define F_TLOCK 2
+#define F_TEST  3
+
+#endif /* _POSIX_FCNTL_H */