time: fix incorrect DST offset when using POSIX timezones without DST
[musl.git] / src / process / waitid.c
blobc67feac3836fcfa7487e11560f5990f5021a733c
1 #include <sys/wait.h>
2 #include "syscall.h"
3 #include "libc.h"
5 int waitid(idtype_t type, id_t id, siginfo_t *info, int options)
7 return syscall_cp(SYS_waitid, type, id, info, options, 0);