Sign in
googlers
/
maze
/
klibc
/
ad6cb3fea7ce96aec76b3d147a43fb330a7ccf93
/
.
/
waitpid.c
blob: f7c5cbfbc04a1bc04d5d1899c49be8dbc1c3ab01 [
file
] [
log
] [
blame
]
/*
* waitpid.c
*/
#include
<sys/types.h>
#include
<sys/resource.h>
#include
<sys/wait.h>
pid_t
waitpid
(
pid_t
pid
,
int
*
status
,
int
options
)
{
return
wait4
(
pid
,
status
,
options
,
NULL
);
}