summaryrefslogtreecommitdiff
path: root/src/linux/wait3.c
blob: dd63707c42f7b5831a3887ba9d7c998bd0f86562 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <sys/wait.h>
#include <sys/resource.h>
#define SYSCALL_STANDALONE
#include "syscall.h"

pid_t wait4(pid_t, int *, int, struct rusage *);

pid_t wait3(int *status, int options, struct rusage *usage)
{
	return wait4(-1, status, options, usage);
}