X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fpthread_sigmask.c;h=f6102ad4dc6b76eb79c19a46a9828f76266e5c81;hp=cddc2bca7680bcc36165f4f26316b30bb423ee4e;hb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;hpb=bac03cdde1137c16b4c194e137310e2748661dcc diff --git a/src/thread/pthread_sigmask.c b/src/thread/pthread_sigmask.c index cddc2bca..f6102ad4 100644 --- a/src/thread/pthread_sigmask.c +++ b/src/thread/pthread_sigmask.c @@ -3,7 +3,7 @@ #include #include "syscall.h" -int pthread_sigmask(int how, const sigset_t *set, sigset_t *old) +int pthread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict old) { int ret; if ((unsigned)how - SIG_BLOCK > 2U) return EINVAL;