From 8c071f872b2844ca297275176047f8d23eec96a7 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 16 Mar 2012 21:20:53 -0400 Subject: other side of the signgam namespace fix: use the internal name --- src/math/lgammal.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/math/lgammal.c') diff --git a/src/math/lgammal.c b/src/math/lgammal.c index 5dd851a6..ec7c9a04 100644 --- a/src/math/lgammal.c +++ b/src/math/lgammal.c @@ -388,9 +388,11 @@ long double __lgammal_r(long double x, int *sg) { } #endif +extern int __signgam; + long double lgammal(long double x) { - return __lgammal_r(x, &signgam); + return __lgammal_r(x, &__signgam); } weak_alias(__lgammal_r, lgammal_r); -- cgit v1.2.1