diff options
Diffstat (limited to 'src/thread/pthread_rwlock_trywrlock.c')
-rw-r--r-- | src/thread/pthread_rwlock_trywrlock.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_rwlock_trywrlock.c b/src/thread/pthread_rwlock_trywrlock.c index 64d9d312..773c3ddf 100644 --- a/src/thread/pthread_rwlock_trywrlock.c +++ b/src/thread/pthread_rwlock_trywrlock.c @@ -7,3 +7,11 @@ int __pthread_rwlock_trywrlock(pthread_rwlock_t *rw) } weak_alias(__pthread_rwlock_trywrlock, pthread_rwlock_trywrlock); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |