1 #ifndef __LUNAIX_LUNAIX_H
2 #define __LUNAIX_LUNAIX_H
4 #include <lunaix/syscall.h>
5 #include <lunaix/types.h>
7 __LXSYSCALL(void, yield);
9 __LXSYSCALL1(pid_t, wait, int*, status);
11 __LXSYSCALL3(pid_t, waitpid, pid_t, pid, int*, status, int, options);
13 __LXSYSCALL(int, geterrno);
15 __LXSYSCALL2_VARG(void, syslog, int, level, const char*, fmt);
17 #endif /* __LUNAIX_LUNAIX_H */