use restrict everywhere it's required by c99 and/or posix 2008
[musl] / src / thread / pthread_rwlock_init.c
index f87d566..29003bc 100644 (file)
@@ -1,6 +1,6 @@
 #include "pthread_impl.h"
 
-int pthread_rwlock_init(pthread_rwlock_t *rw, const pthread_rwlockattr_t *a)
+int pthread_rwlock_init(pthread_rwlock_t *restrict rw, const pthread_rwlockattr_t *restrict a)
 {
        memset(rw, 0, sizeof *rw);
        if (a) {