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