blob: 255a3c84e3ae3558a7f5bae943b664b3bc21ddc1 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/resource.h>
__pid_t waitpid(__pid_t pid, int *wait_stat, int options)
{
return wait4(pid, wait_stat, options, NULL);
}
|