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