mirror of git://git.musl-libc.org/musl
8 lines
178 B
C
8 lines
178 B
C
|
#include <sys/wait.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int waitid(idtype_t type, id_t id, siginfo_t *info, int options)
|
||
|
{
|
||
|
return syscall5(__NR_waitid, type, id, (long)info, options, 0);
|
||
|
}
|