X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fthread%2Fpthread_cond_init.c;h=2eac30f15e8b7903152a934a5d44533f0617b76d;hb=3b5e69052a867e9d99cf4c655d775bd06e3437f1;hp=03aff76840a8d15b7877fdb72f690980f753fab1;hpb=cba4e1c0a3423ed07ef5c79f6e29360996f32fd7;p=musl diff --git a/src/thread/pthread_cond_init.c b/src/thread/pthread_cond_init.c index 03aff768..2eac30f1 100644 --- a/src/thread/pthread_cond_init.c +++ b/src/thread/pthread_cond_init.c @@ -1,6 +1,6 @@ #include "pthread_impl.h" -int pthread_cond_init(pthread_cond_t *c, const pthread_condattr_t *a) +int pthread_cond_init(pthread_cond_t *restrict c, const pthread_condattr_t *restrict a) { memset(c, 0, sizeof *c); if (a) {