mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 15:19:07 +00:00
8 lines
237 B
C
Vendored
8 lines
237 B
C
Vendored
#include "pthread_impl.h"
|
|
|
|
int __pthread_rwlock_timedrdlock(pthread_rwlock_t *restrict rw, const struct timespec *restrict at)
|
|
{
|
|
return pthread_rwlock_rdlock(rw);
|
|
}
|
|
|
|
weak_alias(__pthread_rwlock_timedrdlock, pthread_rwlock_timedrdlock);
|