summaryrefslogtreecommitdiff
path: root/tgmath.c
diff options
context:
space:
mode:
Diffstat (limited to 'tgmath.c')
-rw-r--r--tgmath.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/tgmath.c b/tgmath.c
new file mode 100644
index 0000000..2f4e2d8
--- /dev/null
+++ b/tgmath.c
@@ -0,0 +1,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