Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
process
waitid.c
pretty
plain
permalink
blame
history
•
7 lines
•
173 B
1
#include <sys/wait.h>
2
#include "syscall.h"
3
4
int waitid(idtype_t type, id_t id, siginfo_t *info, int options)
5
{
6
	return syscall_cp(SYS_waitid, type, id, info, options, 0);
7
}