Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
linux
/
wait4.c
blob: 97f12cc524685182d13121c4fd49c17205e1af2c [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<sys/wait.h>
#include
<sys/resource.h>
#include
"syscall.h"
pid_t
wait4
(
pid_t
pid
,
int
*
status
,
int
options
,
struct
rusage
*
usage
)
{
return
syscall
(
SYS_wait4
,
pid
,
status
,
options
,
usage
);
}