mirror of
https://github.com/ziglang/zig.git
synced 2025-12-16 03:03:09 +00:00
9 lines
237 B
C
Vendored
9 lines
237 B
C
Vendored
#include "pthread_impl.h"
|
|
|
|
int __pthread_rwlock_timedwrlock(pthread_rwlock_t *restrict rw, const struct timespec *restrict at)
|
|
{
|
|
return pthread_rwlock_wrlock(rw);
|
|
}
|
|
|
|
weak_alias(__pthread_rwlock_timedwrlock, pthread_rwlock_timedwrlock);
|