diff options
Diffstat (limited to 'src/thread/pthread_setconcurrency.c')
-rw-r--r-- | src/thread/pthread_setconcurrency.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_setconcurrency.c b/src/thread/pthread_setconcurrency.c index 091abf98..8b9a40e3 100644 --- a/src/thread/pthread_setconcurrency.c +++ b/src/thread/pthread_setconcurrency.c @@ -7,3 +7,11 @@ int pthread_setconcurrency(int val) if (val > 0) return EAGAIN; return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |