mirror of
https://github.com/ziglang/zig.git
synced 2026-01-11 01:45:12 +00:00
8 lines
146 B
C
Vendored
8 lines
146 B
C
Vendored
#include <sys/wait.h>
|
|
#include "syscall.h"
|
|
|
|
pid_t waitpid(pid_t pid, int *status, int options)
|
|
{
|
|
return sys_wait4_cp(pid, status, options, 0);
|
|
}
|