Sign in
cobalt
/
cobalt
/
0585facbd3129ea3f3d3c63f9539aacbad3130c8
/
.
/
third_party
/
musl
/
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
);
}