aboutsummaryrefslogtreecommitdiff
path: root/src/math/frexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/frexp.c')
-rw-r--r--src/math/frexp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/frexp.c b/src/math/frexp.c
index 27b6266e..4ced6bd2 100644
--- a/src/math/frexp.c
+++ b/src/math/frexp.c
@@ -21,3 +21,11 @@ double frexp(double x, int *e)
y.i |= 0x3fe0000000000000ull;
return y.d;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif