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