blob: 1b65bf05123833c598d384c5407a72e0bf43c190 [file] [log] [blame]
#include <sys/wait.h>
#include "syscall.h"
pid_t waitpid(pid_t pid, int *status, int options)
{
return syscall_cp(SYS_wait4, pid, status, options, 0);
}