use restrict everywhere it's required by c99 and/or posix 2008
[musl] / src / signal / sigwaitinfo.c
1 #include <signal.h>
2 #include <stddef.h>
3
4 int sigwaitinfo(const sigset_t *restrict mask, siginfo_t *restrict si)
5 {
6         return sigtimedwait(mask, si, NULL);
7 }