| 1 | #include "pthread_impl.h" |
| 2 | |
| 3 | int __pthread_rwlock_timedrdlock(pthread_rwlock_t *restrict rw, const struct timespec *restrict at) |
| 4 | { |
| 5 | 	return pthread_rwlock_rdlock(rw); |
| 6 | } |
| 7 | |
| 8 | weak_alias(__pthread_rwlock_timedrdlock, pthread_rwlock_timedrdlock); |