aboutsummaryrefslogtreecommitdiff
path: root/src/math/j0.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/j0.c')
-rw-r--r--src/math/j0.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/j0.c b/src/math/j0.c
index d722d942..256bae35 100644
--- a/src/math/j0.c
+++ b/src/math/j0.c
@@ -373,3 +373,11 @@ static double qzero(double x)
s = 1.0+z*(q[0]+z*(q[1]+z*(q[2]+z*(q[3]+z*(q[4]+z*q[5])))));
return (-.125 + r/s)/x;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif