Sign in
googlers
/
maze
/
klibc
/
klibc-0.18
/
.
/
wait.c
blob: 5e0bbe29c513467055844930d19f1d0174a070fc [
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
);
}