summaryrefslogtreecommitdiff
path: root/src/linux/wait3.c
blob: 61c735947b473b88b27f0fa71c8725b96d31ed0b (plain) (blame)
1
2
3
4
5
6
7
8
9
#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);
}