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