Viet-Trung Luu | 96b05c1 | 2016-01-11 11:26:36 -0800 | [diff] [blame] | 1 | #define _GNU_SOURCE |
2 | #include <sys/wait.h> | ||||
3 | #include <sys/resource.h> | ||||
4 | #include "syscall.h" | ||||
5 | |||||
George Kulakowski | 17e3b04 | 2016-02-18 15:59:50 -0800 | [diff] [blame] | 6 | pid_t wait3(int* status, int options, struct rusage* usage) { |
7 | return wait4(-1, status, options, usage); | ||||
Viet-Trung Luu | 96b05c1 | 2016-01-11 11:26:36 -0800 | [diff] [blame] | 8 | } |