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/lgammaf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/math/lgammaf.c') diff --git a/src/math/lgammaf.c b/src/math/lgammaf.c index 93253534..b3d996cf 100644 --- a/src/math/lgammaf.c +++ b/src/math/lgammaf.c @@ -1,10 +1,11 @@ #include "libm.h" +extern int __signgam; float __lgammaf_r(float, int *); float lgammaf(float x) { - return __lgammaf_r(x, &signgam); + return __lgammaf_r(x, &__signgam); } // FIXME -- cgit v1.2.1