summaryrefslogtreecommitdiff
path: root/fenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'fenv.c')
-rw-r--r--fenv.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/fenv.c b/fenv.c
new file mode 100644
index 0000000..1b6414a
--- /dev/null
+++ b/fenv.c
@@ -0,0 +1,19 @@
+#if defined __STDC_VERSION__ && 199901L <= __STDC_VERSION__
+#include <fenv.h>
+#include "test.h"
+
+void test_fenv_h(void)
+{
+ fenv_t fenv;
+ fexcept_t fexcept;
+
+ testing_header("fenv.h");
+
+ testing_end();
+}
+
+#else
+void test_fenv_h(void)
+{
+}
+#endif