summaryrefslogtreecommitdiff
path: root/src/sys/wait/waitid.c
blob: 875aa6d76f5e577bb4446f0f8853486fed7658c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <sys/types.h>
#include <sys/wait.h>
#include "_syscall.h"

int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options)
{
	SYSCALL(waitid, int, -1, idtype, id, infop, option, NULL, 0);
}

/*
XOPEN(400)
POSIX(200809)
*/