diff options
Diffstat (limited to 'src/thread/cnd_destroy.c')
-rw-r--r-- | src/thread/cnd_destroy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/cnd_destroy.c b/src/thread/cnd_destroy.c index 453c90be..825103a1 100644 --- a/src/thread/cnd_destroy.c +++ b/src/thread/cnd_destroy.c @@ -4,3 +4,11 @@ void cnd_destroy(cnd_t *c) { /* For private cv this is a no-op */ } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |