musl-tcc/src/process/waitid.c

8 lines
173 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#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);
}