You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
197 B

#define _GNU_SOURCE
#include <sys/wait.h>
#include <sys/resource.h>
#include "syscall.h"
pid_t wait3(int *status, int options, struct rusage *usage)
{
return wait4(-1, status, options, usage);
}