diff options
Diffstat (limited to 'src/thread/pthread_barrierattr_setpshared.c')
-rw-r--r-- | src/thread/pthread_barrierattr_setpshared.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_barrierattr_setpshared.c b/src/thread/pthread_barrierattr_setpshared.c index c2d2929d..8835406d 100644 --- a/src/thread/pthread_barrierattr_setpshared.c +++ b/src/thread/pthread_barrierattr_setpshared.c @@ -6,3 +6,11 @@ int pthread_barrierattr_setpshared(pthread_barrierattr_t *a, int pshared) a->__attr = pshared ? INT_MIN : 0; return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |