musl - an implementation of the standard library for Linux-based systems
blob: e742069447d6c14a0a6dbab6622689a9279294f3 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include "pthread_impl.h"
int pthread_rwlockattr_init(pthread_rwlockattr_t *a)
{
*a = (pthread_rwlockattr_t){0};
return 0;
}
|