use restrict everywhere it's required by c99 and/or posix 2008
[musl] / src / thread / pthread_barrier_init.c
index ccaab4e..01e8cd6 100644 (file)
@@ -1,6 +1,6 @@
 #include "pthread_impl.h"
 
-int pthread_barrier_init(pthread_barrier_t *b, const pthread_barrierattr_t *a, unsigned count)
+int pthread_barrier_init(pthread_barrier_t *restrict b, const pthread_barrierattr_t *restrict a, unsigned count)
 {
        if (count-1 > INT_MAX-1) return EINVAL;
        *b = (pthread_barrier_t){ ._b_limit = count-1 | (a?*a:0) };