use restrict everywhere it's required by c99 and/or posix 2008
[musl] / src / thread / pthread_mutex_init.c
index 75ddf02..fb68927 100644 (file)
@@ -1,6 +1,6 @@
 #include "pthread_impl.h"
 
-int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a)
+int pthread_mutex_init(pthread_mutex_t *restrict m, const pthread_mutexattr_t *restrict a)
 {
        memset(m, 0, sizeof *m);
        if (a) m->_m_type = *a & 7;