Sign in
mojo
/
mojo-tools
/
4446eb0e2d7a3e9bca844dc343aa4094eaae9a97
/
.
/
fusl
/
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
);
}