diff options
Diffstat (limited to 'src/thread/pthread_rwlock_tryrdlock.c')
-rw-r--r-- | src/thread/pthread_rwlock_tryrdlock.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_rwlock_tryrdlock.c b/src/thread/pthread_rwlock_tryrdlock.c index c13bc9cc..95f52439 100644 --- a/src/thread/pthread_rwlock_tryrdlock.c +++ b/src/thread/pthread_rwlock_tryrdlock.c @@ -13,3 +13,11 @@ int __pthread_rwlock_tryrdlock(pthread_rwlock_t *rw) } weak_alias(__pthread_rwlock_tryrdlock, pthread_rwlock_tryrdlock); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |