musl/src/linux/wait3.c
2011-02-12 00:22:29 -05:00

12 lines
254 B
C

#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);
}