fix typo in wordexp.h (note that the function is still unimplemented)
[musl] / src / process / waitid.c
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 syscall5(__NR_waitid, type, id, (long)info, options, 0);
7 }