Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
musl
/
src
/
linux
/
wait3.c
blob: 61c735947b473b88b27f0fa71c8725b96d31ed0b [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<sys/wait.h>
#include
<sys/resource.h>
#include
"syscall.h"
pid_t
wait3
(
int
*
status
,
int
options
,
struct
rusage
*
usage
)
{
return
wait4
(-
1
,
status
,
options
,
usage
);
}