1 #include <errno.h>
2 #include <sys/wait.h>
3 
waitid(idtype_t type,id_t id,siginfo_t * info,int options)4 int waitid(idtype_t type, id_t id, siginfo_t* info, int options) {
5     errno = ENOSYS;
6     return -1;
7 }
8