refactor: separate syscall interfaces from kernel space, into posix compliant structure.
[lunaix-os.git] / lunaix-os / includes / usr / fcntl.h
diff --git a/lunaix-os/includes/usr/fcntl.h b/lunaix-os/includes/usr/fcntl.h
new file mode 100644 (file)
index 0000000..2a83c93
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef __LUNAIX_SYS_FCNTL_H
+#define __LUNAIX_SYS_FCNTL_H
+
+#include <usr/fcntl_defs.h>
+#include <usr/sys/types.h>
+
+int
+open(const char* path, int flags);
+
+#endif /* __LUNAIX_FCNTL_H */