feat: wrapper function for bootstraping user program
[lunaix-os.git] / lunaix-os / usr / includes / sys / mann.h
diff --git a/lunaix-os/usr/includes/sys/mann.h b/lunaix-os/usr/includes/sys/mann.h
new file mode 100644 (file)
index 0000000..0e424d4
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef __LUNAIX_SYS_MANN_H
+#define __LUNAIX_SYS_MANN_H
+
+#include <sys/mann_flags.h>
+#include <sys/types.h>
+
+void*
+mmap(void* addr, size_t length, int proct, int flags, int fd, off_t offset);
+
+void
+munmap(void* addr, size_t length);
+
+#endif /* __LUNAIX_MANN_H */