summaryrefslogtreecommitdiff
path: root/threads.c
diff options
context:
space:
mode:
Diffstat (limited to 'threads.c')
-rw-r--r--threads.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/threads.c b/threads.c
new file mode 100644
index 0000000..abc2629
--- /dev/null
+++ b/threads.c
@@ -0,0 +1,18 @@
+#if defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__ && ! defined __STDC_NO_THREADS__
+#include <threads.h>
+#include "test.h"
+
+void test_threads_h(void)
+{
+ testing_header("threads.h");
+
+ /* TODO */
+
+ testing_end();
+}
+
+#else
+void test_threads_h(void)
+{
+}
+#endif