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