refactor: separate syscall interfaces from kernel space, into posix compliant structure.
[lunaix-os.git] / lunaix-os / includes / lunaix / lunaix.h
diff --git a/lunaix-os/includes/lunaix/lunaix.h b/lunaix-os/includes/lunaix/lunaix.h
deleted file mode 100644 (file)
index adbde1d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef __LUNAIX_LUNAIX_H
-#define __LUNAIX_LUNAIX_H
-
-#include <lunaix/syscall.h>
-#include <lunaix/types.h>
-
-__LXSYSCALL(void, yield);
-
-__LXSYSCALL1(pid_t, wait, int*, status);
-
-__LXSYSCALL3(pid_t, waitpid, pid_t, pid, int*, status, int, options);
-
-__LXSYSCALL(int, geterrno);
-
-__LXSYSCALL2_VARG(void, syslog, int, level, const char*, fmt);
-
-#endif /* __LUNAIX_LUNAIX_H */