From 1b229a2098a35795aa20bd09b8c81c5143e64277 Mon Sep 17 00:00:00 2001 From: nsz Date: Tue, 27 Mar 2012 22:12:20 +0200 Subject: math: remove comment about aliasing lgamma as gamma It is probably not worth supporting gamma. (it was already deprecated in 4.3BSD) --- src/math/lgamma.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/math/lgamma.c') diff --git a/src/math/lgamma.c b/src/math/lgamma.c index d8b85312..e25ec8e6 100644 --- a/src/math/lgamma.c +++ b/src/math/lgamma.c @@ -1,4 +1,4 @@ -#include "libm.h" +#include extern int __signgam; double __lgamma_r(double, int *); @@ -7,6 +7,3 @@ double lgamma(double x) { return __lgamma_r(x, &__signgam); } - -// FIXME -//weak_alias(lgamma, gamma); -- cgit v1.2.1