blob: 61c735947b473b88b27f0fa71c8725b96d31ed0b [file] [log] [blame]
Rich Felkercc2a8222011-02-19 02:28:42 -05001#define _GNU_SOURCE
Rich Felker0b44a032011-02-12 00:22:29 -05002#include <sys/wait.h>
3#include <sys/resource.h>
Rich Felker0b44a032011-02-12 00:22:29 -05004#include "syscall.h"
5
Rich Felker0b44a032011-02-12 00:22:29 -05006pid_t wait3(int *status, int options, struct rusage *usage)
7{
8 return wait4(-1, status, options, usage);
9}