From f2d83d19a09f68864209cc1568a59be70a7bfdbc Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 22 Jul 2014 00:59:22 -0700 Subject: * RELNOTES: Updated. * configure, txr.1: Bumped version. * share/txr/stdlib/ver.txr: Likewise * arith.c (log2): Change to static. --- arith.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arith.c') 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; } -- cgit v1.2.3