zig/lib/libc/wasi/thread-stub/pthread_rwlock_timedwrlock.c
2025-08-20 19:18:11 +02:00

8 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);