basic process support and some syscalls
[lunaix-os.git] / lunaix-os / includes / lunaix / lunistd.h
diff --git a/lunaix-os/includes/lunaix/lunistd.h b/lunaix-os/includes/lunaix/lunistd.h
new file mode 100644 (file)
index 0000000..20e394f
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef __LUNAIX_UNISTD_H
+#define __LUNAIX_UNISTD_H
+
+#include <lunaix/syscall.h>
+#include <lunaix/types.h>
+
+__LXSYSCALL(pid_t, fork)
+
+__LXSYSCALL1(int, sbrk, void*, addr)
+
+__LXSYSCALL1(void*, brk, size_t, size)
+
+#endif /* __LUNAIX_UNISTD_H */