aboutsummaryrefslogtreecommitdiff
path: root/src/math/__fpclassifyf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/__fpclassifyf.c')
-rw-r--r--src/math/__fpclassifyf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__fpclassifyf.c b/src/math/__fpclassifyf.c
index fd00eb1b..99f22662 100644
--- a/src/math/__fpclassifyf.c
+++ b/src/math/__fpclassifyf.c
@@ -9,3 +9,11 @@ int __fpclassifyf(float x)
if (e==0xff) return u.i<<9 ? FP_NAN : FP_INFINITE;
return FP_NORMAL;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif