OLD | NEW |
---|---|
1 #include <sys/wait.h> | 1 #include <sys/wait.h> |
2 #include "syscall.h" | 2 #include "syscall.h" |
3 #include "libc.h" | 3 #include "libc.h" |
4 | 4 |
5 int waitid(idtype_t type, id_t id, siginfo_t *info, int options) | 5 int waitid(idtype_t type, id_t id, siginfo_t* info, int options) { |
6 { | 6 return syscall_cp(SYS_waitid, type, id, info, options, 0); |
7 » return syscall_cp(SYS_waitid, type, id, info, options, 0); | |
8 } | 7 } |
OLD | NEW |