blob: d688650d8555954f4cb970e7711a032a47dcef43 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <sys/wait.h>
#include "syscall.h"
int waitid(idtype_t type, id_t id, siginfo_t *info, int options)
{
return syscall_cp(SYS_waitid, type, id, info, options, 0);
}
|