Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 1 | #include "pthread_impl.h" |
2 | |||||
3 | int pthread_rwlock_wrlock(pthread_rwlock_t *rw) | ||||
4 | { | ||||
Rich Felker | 50304f2 | 2011-08-03 10:21:32 -0400 | [diff] [blame] | 5 | return pthread_rwlock_timedwrlock(rw, 0); |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 6 | } |