Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
bwh
/
klibc
/
201dabf78546ca712d3541670a5d898dc199854e
/
.
/
usr
/
klibc
/
wait3.c
blob: 1f35414b3a6c6b01933b62d9906c962618ab0840 [
file
] [
log
] [
blame
]
/*
* wait3.c
*/
#include
<sys/types.h>
#include
<sys/resource.h>
#include
<sys/wait.h>
pid_t
wait3
(
int
*
status
,
int
options
,
struct
rusage
*
rusage
)
{
return
wait4
((
pid_t
)
-
1
,
status
,
options
,
rusage
);
}