diff options
Diffstat (limited to 'src/thread/pthread_mutex_destroy.c')
-rw-r--r-- | src/thread/pthread_mutex_destroy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_mutex_destroy.c b/src/thread/pthread_mutex_destroy.c index 8d1bf77b..57b50e46 100644 --- a/src/thread/pthread_mutex_destroy.c +++ b/src/thread/pthread_mutex_destroy.c @@ -8,3 +8,11 @@ int pthread_mutex_destroy(pthread_mutex_t *mutex) if (mutex->_m_type > 128) __vm_wait(); return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |