fix use of uninitialized pointer in gettext core
[musl.git] / src / thread / pthread_rwlock_trywrlock.c
blobbb3d3a992d1f3dd8a4919de9945b7fad75786a6a
1 #include "pthread_impl.h"
3 int pthread_rwlock_trywrlock(pthread_rwlock_t *rw)
5 if (a_cas(&rw->_rw_lock, 0, 0x7fffffff)) return EBUSY;
6 return 0;