aboutsummaryrefslogtreecommitdiff
path: root/src/thread/pthread_condattr_setpshared.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_condattr_setpshared.c')
-rw-r--r--src/thread/pthread_condattr_setpshared.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_condattr_setpshared.c b/src/thread/pthread_condattr_setpshared.c
index 51453e04..35fb085e 100644
--- a/src/thread/pthread_condattr_setpshared.c
+++ b/src/thread/pthread_condattr_setpshared.c
@@ -7,3 +7,11 @@ int pthread_condattr_setpshared(pthread_condattr_t *a, int pshared)
a->__attr |= (unsigned)pshared<<31;
return 0;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif