blob: abc2629c20d113636f7fbef40c86b0e64474b047 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|