summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-07-22 00:59:22 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-07-22 00:59:22 -0700
commitf2d83d19a09f68864209cc1568a59be70a7bfdbc (patch)
treeda632dd3ab2494d2983e616dde1fcb2eaf98e88e /arith.c
parente0d8ff5ebd953e61f6e201a0b68c7ce7bccdfcd8 (diff)
downloadtxr-f2d83d19a09f68864209cc1568a59be70a7bfdbc.tar.gz
txr-f2d83d19a09f68864209cc1568a59be70a7bfdbc.tar.bz2
txr-f2d83d19a09f68864209cc1568a59be70a7bfdbc.zip
* RELNOTES: Updated.
* configure, txr.1: Bumped version. * share/txr/stdlib/ver.txr: Likewise * arith.c (log2): Change to static.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arith.c b/arith.c
index 7051ddb8..3a9f7b78 100644
--- a/arith.c
+++ b/arith.c
@@ -1466,7 +1466,7 @@ static void log2_init(void)
l2 = log(2.0);
}
-double log2(double x)
+static double log2(double x)
{
return log(x)/l2;
}