Files
musl/src/process/waitpid.c

8 lines
152 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <sys/wait.h>
#include "syscall.h"
pid_t waitpid(pid_t pid, int *status, int options)
{
return syscall(SYS_wait4, pid, status, options, 0);
2011-02-12 00:22:29 -05:00
}