From: nsz Date: Tue, 27 Mar 2012 20:12:20 +0000 (+0200) Subject: math: remove comment about aliasing lgamma as gamma X-Git-Tag: v0.8.8~66 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1b229a2098a35795aa20bd09b8c81c5143e64277;p=oweals%2Fmusl.git math: remove comment about aliasing lgamma as gamma It is probably not worth supporting gamma. (it was already deprecated in 4.3BSD) --- 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); diff --git a/src/math/lgammaf.c b/src/math/lgammaf.c index b3d996cf..badb6dfe 100644 --- a/src/math/lgammaf.c +++ b/src/math/lgammaf.c @@ -1,4 +1,4 @@ -#include "libm.h" +#include extern int __signgam; float __lgammaf_r(float, int *); @@ -7,6 +7,3 @@ float lgammaf(float x) { return __lgammaf_r(x, &__signgam); } - -// FIXME -//weak_alias(lgammaf, gammaf); diff --git a/src/math/lgammal.c b/src/math/lgammal.c index 8fae1be8..56d7866d 100644 --- a/src/math/lgammal.c +++ b/src/math/lgammal.c @@ -89,6 +89,8 @@ #include "libm.h" #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 +double __lgamma_r(double x, int *sg); + long double __lgammal_r(long double x, int *sg) { return __lgamma_r(x, sg);