Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
process
/
waitpid.c
blob: 1b65bf05123833c598d384c5407a72e0bf43c190 [
file
] [
log
] [
blame
]
#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
);
}