Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
musl
/
src
/
process
/
waitpid.c
blob: 1b65bf05123833c598d384c5407a72e0bf43c190 [
file
]
#include
<sys/wait.h>
#include
"syscall.h"
pid_t
waitpid
(
pid_t
pid
,
int
*
status
,
int
options
)
{
return
syscall_cp
(
SYS_wait4
,
pid
,
status
,
options
,
0
);
}