Sign in
mojo
/
mojo-tools
/
b3a28bec1abb6642ddf21b21406c6666fb821438
/
.
/
fusl
/
src
/
process
/
waitpid.c
blob: 6231bf2900f9ce980a0bf64c0f648b0701b0e65b [
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
);
}