1
0

wait.c 90 B

123456
  1. #include <sys/wait.h>
  2. pid_t wait(int *status)
  3. {
  4. return waitpid((pid_t)-1, status, 0);
  5. }