use weak aliases rather than function pointers to simplify some code
[musl] / src / thread / pthread_rwlockattr_init.c
1 #include "pthread_impl.h"
2
3 int pthread_rwlockattr_init(pthread_rwlockattr_t *a)
4 {
5         memset(a, 0, sizeof *a);
6         return 0;
7 }