rework langinfo code for ABI compat and for use by time code
[musl] / 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 }