blob: bf2744f1f926ef64e03ad20c65a5580861dc46c9 [file] [log] [blame]
#include "pthread_impl.h"
int pthread_rwlock_init(pthread_rwlock_t* restrict rw, const pthread_rwlockattr_t* restrict a) {
*rw = (pthread_rwlock_t){};
return 0;
}