crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[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         *(int *)a = pshared;
7         return 0;
8 }