diff options
Diffstat (limited to 'src/thread/pthread_cond_destroy.c')
-rw-r--r-- | src/thread/pthread_cond_destroy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_cond_destroy.c b/src/thread/pthread_cond_destroy.c index 8c555160..31b2a4d3 100644 --- a/src/thread/pthread_cond_destroy.c +++ b/src/thread/pthread_cond_destroy.c @@ -12,3 +12,11 @@ int pthread_cond_destroy(pthread_cond_t *c) } return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |