aboutsummaryrefslogtreecommitdiff
path: root/src/math/scalbnf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/scalbnf.c')
-rw-r--r--src/math/scalbnf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/scalbnf.c b/src/math/scalbnf.c
index a5ad208b..85ca147f 100644
--- a/src/math/scalbnf.c
+++ b/src/math/scalbnf.c
@@ -29,3 +29,11 @@ float scalbnf(float x, int n)
x = y * u.f;
return x;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif