mirror of
https://github.com/ziglang/zig.git
synced 2026-01-17 04:45:20 +00:00
10 lines
222 B
C
10 lines
222 B
C
#define _GNU_SOURCE
|
|
#include <sys/wait.h>
|
|
#include <sys/resource.h>
|
|
#include "syscall.h"
|
|
|
|
pid_t wait4(pid_t pid, int *status, int options, struct rusage *usage)
|
|
{
|
|
return syscall(SYS_wait4, pid, status, options, usage);
|
|
}
|