Sign in
googlers
/
maze
/
klibc
/
ad6cb3fea7ce96aec76b3d147a43fb330a7ccf93
/
.
/
wait3.c
blob: 48840ad155818ff84be39d6aab77458a70baffc0 [
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
);
}