87f30bb02c6c5a4a18536bbe4e86f309a6fed0f3
[lunaix-os.git] / lunaix-os / usr / libc / arch / i386 / lunaix.c
1 #include "syscall.h"
2 #include <lunaix/types.h>
3
4 __LXSYSCALL(void, yield);
5
6 __LXSYSCALL1(pid_t, wait, int*, status);
7
8 __LXSYSCALL3(pid_t, waitpid, pid_t, pid, int*, status, int, options);
9
10 __LXSYSCALL2_VARG(void, syslog, int, level, const char*, fmt);
11
12 __LXSYSCALL3(int, realpathat, int, fd, char*, buf, size_t, size)