aboutsummaryrefslogtreecommitdiff
path: root/src/math/__math_xflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/__math_xflow.c')
-rw-r--r--src/math/__math_xflow.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__math_xflow.c b/src/math/__math_xflow.c
index 744203c4..7b79baa0 100644
--- a/src/math/__math_xflow.c
+++ b/src/math/__math_xflow.c
@@ -4,3 +4,11 @@ double __math_xflow(uint32_t sign, double y)
{
return eval_as_double(fp_barrier(sign ? -y : y) * y);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif