Sign in
mojo
/
mojo-testing
/
9fee97604c5f232308a7d7af3373734b090c875c
/
.
/
fusl
/
src
/
process
/
wait.c
blob: 54c2a65c3ce4eff878d40f8807e85d3709e5fc79 [
file
]
#include
<sys/wait.h>
pid_t
wait
(
int
*
status
)
{
return
waitpid
((
pid_t
)-
1
,
status
,
0
);
}