diff options
Diffstat (limited to 'src/thread/pthread_rwlock_destroy.c')
-rw-r--r-- | src/thread/pthread_rwlock_destroy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_rwlock_destroy.c b/src/thread/pthread_rwlock_destroy.c index 49ecfbd0..bb1358a3 100644 --- a/src/thread/pthread_rwlock_destroy.c +++ b/src/thread/pthread_rwlock_destroy.c @@ -4,3 +4,11 @@ int pthread_rwlock_destroy(pthread_rwlock_t *rw) { return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |