remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / signal / sigaltstack.c
index 550f2f9df892b4a7b18f0f4de57b7562f4be73de..62cb81adfe16ea1a112448f1654d55a859718374 100644 (file)
@@ -2,7 +2,7 @@
 #include <errno.h>
 #include "syscall.h"
 
-int sigaltstack(const stack_t *ss, stack_t *old)
+int sigaltstack(const stack_t *restrict ss, stack_t *restrict old)
 {
        if (ss) {
                if (ss->ss_size < MINSIGSTKSZ) {