musl-tcc/src/process/wait.c

7 lines
90 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <sys/wait.h>
pid_t wait(int *status)
{
return waitpid((pid_t)-1, status, 0);
}