aboutsummaryrefslogtreecommitdiff
path: root/src/math/__math_xflowf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/__math_xflowf.c')
-rw-r--r--src/math/__math_xflowf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__math_xflowf.c b/src/math/__math_xflowf.c
index f2c84784..359b4618 100644
--- a/src/math/__math_xflowf.c
+++ b/src/math/__math_xflowf.c
@@ -4,3 +4,11 @@ float __math_xflowf(uint32_t sign, float y)
{
return eval_as_float(fp_barrierf(sign ? -y : y) * y);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif