Sign in
cobalt
/
cobalt
/
9708d320f5c570ac1ada07d0e0136706ac0a5c29
/
.
/
third_party
/
musl
/
src
/
thread
/
pthread_rwlockattr_init.c
blob: e742069447d6c14a0a6dbab6622689a9279294f3 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_rwlockattr_init
(
pthread_rwlockattr_t
*
a
)
{
*
a
=
(
pthread_rwlockattr_t
){
0
};
return
0
;
}