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