remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / signal / sigprocmask.c
index 67e2b82e2ba8362f0db5272477d6588132e28689..297e20c65f825c64d0b63bf4500595aa126e3642 100644 (file)
@@ -1,7 +1,7 @@
 #include <signal.h>
 #include <errno.h>
 
-int sigprocmask(int how, const sigset_t *set, sigset_t *old)
+int sigprocmask(int how, const sigset_t *restrict set, sigset_t *restrict old)
 {
        int r = pthread_sigmask(how, set, old);
        if (!r) return r;