diff options
Diffstat (limited to 'src/thread/pthread_cond_wait.c')
-rw-r--r-- | src/thread/pthread_cond_wait.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_cond_wait.c b/src/thread/pthread_cond_wait.c index 8735bf14..4e5917f6 100644 --- a/src/thread/pthread_cond_wait.c +++ b/src/thread/pthread_cond_wait.c @@ -4,3 +4,11 @@ int pthread_cond_wait(pthread_cond_t *restrict c, pthread_mutex_t *restrict m) { return pthread_cond_timedwait(c, m, 0); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |