Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
process
/
waitpid.c
blob: f75e31ef24674df14252163f858aac6e6ddf8ed2 [
file
] [
log
] [
blame
]
#include
<sys/wait.h>
#include
"syscall.h"
#include
"libc.h"
pid_t
waitpid
(
pid_t
pid
,
int
*
status
,
int
options
)
{
return
syscall_cp
(
SYS_wait4
,
pid
,
status
,
options
,
0
);
}