use restrict everywhere it's required by c99 and/or posix 2008
[musl] / src / signal / sigwaitinfo.c
index e79feb9..c7b164d 100644 (file)
@@ -1,7 +1,7 @@
 #include <signal.h>
 #include <stddef.h>
 
-int sigwaitinfo(const sigset_t *mask, siginfo_t *si)
+int sigwaitinfo(const sigset_t *restrict mask, siginfo_t *restrict si)
 {
        return sigtimedwait(mask, si, NULL);
 }