diff options
Diffstat (limited to 'src/thread/pthread_mutex_consistent.c')
-rw-r--r-- | src/thread/pthread_mutex_consistent.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_mutex_consistent.c b/src/thread/pthread_mutex_consistent.c index 27c74e5b..9c7177e0 100644 --- a/src/thread/pthread_mutex_consistent.c +++ b/src/thread/pthread_mutex_consistent.c @@ -12,3 +12,11 @@ int pthread_mutex_consistent(pthread_mutex_t *m) a_and(&m->_m_lock, ~0x40000000); return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |