blob: 2f4e2d89d42c75bca1e94739cd675325b60321bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#if defined __STDC_VERSION__ && 199901L <= __STDC_VERSION__
#include <tgmath.h>
#include "test.h"
void test_tgmath_h(void)
{
testing_header("tgmath.h");
/* I'm not really sure how to test this accurately in C alone */
testing_end();
}
#else
void test_tgmath_h(void)
{
}
#endif
|