diff options
Diffstat (limited to 'src/thread/pthread_rwlock_timedrdlock.c')
-rw-r--r-- | src/thread/pthread_rwlock_timedrdlock.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_rwlock_timedrdlock.c b/src/thread/pthread_rwlock_timedrdlock.c index 8cdd8ecf..62548901 100644 --- a/src/thread/pthread_rwlock_timedrdlock.c +++ b/src/thread/pthread_rwlock_timedrdlock.c @@ -23,3 +23,11 @@ int __pthread_rwlock_timedrdlock(pthread_rwlock_t *restrict rw, const struct tim } weak_alias(__pthread_rwlock_timedrdlock, pthread_rwlock_timedrdlock); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |