musl/src/thread/pthread_rwlock_init.c
2011-02-12 00:22:29 -05:00

10 lines
160 B
C

#include "pthread_impl.h"
int pthread_rwlock_init(pthread_rwlock_t *rw, const pthread_rwlockattr_t *a)
{
memset(rw, 0, sizeof *rw);
if (a) {
}
return 0;
}