Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
bwh
/
klibc
/
201dabf78546ca712d3541670a5d898dc199854e
/
.
/
usr
/
klibc
/
waitpid.c
blob: a1571229081c175697ea44f80b23f0cf8ef5dbf7 [
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
);
}