eliminate protected-visibility data in libc.so with vis.h preinclude
[musl] / src / thread / pthread_rwlockattr_setpshared.c
1 #include "pthread_impl.h"
2
3 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *a, int pshared)
4 {
5         if (pshared > 1U) return EINVAL;
6         a->__attr[0] = pshared;
7         return 0;
8 }