Sign in
android
/
platform
/
external
/
musl
/
3ea3fcf78a5532e118856846df8adbf3f60ef716
/
.
/
src
/
process
/
wait.c
blob: 34da102d586a74a56959449cffe83916439503b2 [
file
] [
log
] [
blame
]
#include
<sys/wait.h>
pid_t
wait
(
int
*
status
)
{
return
waitpid
((
pid_t
)-
1
,
status
,
0
);
}