diff options
Diffstat (limited to 'src/thread/pthread_cond_init.c')
-rw-r--r-- | src/thread/pthread_cond_init.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_cond_init.c b/src/thread/pthread_cond_init.c index 8c484ddc..eb7500ff 100644 --- a/src/thread/pthread_cond_init.c +++ b/src/thread/pthread_cond_init.c @@ -9,3 +9,11 @@ int pthread_cond_init(pthread_cond_t *restrict c, const pthread_condattr_t *rest } return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |