diff options
Diffstat (limited to 'src/thread/pthread_condattr_setclock.c')
-rw-r--r-- | src/thread/pthread_condattr_setclock.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_condattr_setclock.c b/src/thread/pthread_condattr_setclock.c index 71125941..87c68f2d 100644 --- a/src/thread/pthread_condattr_setclock.c +++ b/src/thread/pthread_condattr_setclock.c @@ -7,3 +7,11 @@ int pthread_condattr_setclock(pthread_condattr_t *a, clockid_t clk) a->__attr |= clk; return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |