mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 12:42:02 +00:00
7 lines
90 B
C
7 lines
90 B
C
![]() |
#include <sys/wait.h>
|
||
|
|
||
|
pid_t wait(int *status)
|
||
|
{
|
||
|
return waitpid((pid_t)-1, status, 0);
|
||
|
}
|