diff options
Diffstat (limited to 'src/thread/pthread_mutex_init.c')
-rw-r--r-- | src/thread/pthread_mutex_init.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_mutex_init.c b/src/thread/pthread_mutex_init.c index acf45a74..04278665 100644 --- a/src/thread/pthread_mutex_init.c +++ b/src/thread/pthread_mutex_init.c @@ -6,3 +6,11 @@ int pthread_mutex_init(pthread_mutex_t *restrict m, const pthread_mutexattr_t *r if (a) m->_m_type = a->__attr; return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |