Sign in
mojo
/
mojo-tools
/
ce913b53e2545ddd4d4a565997d0816e8ef90a22
/
.
/
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
);
}