diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-16 21:20:53 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-16 21:20:53 -0400 |
commit | 8c071f872b2844ca297275176047f8d23eec96a7 (patch) | |
tree | 82206c8781f2c07c9b59e805e758550b3797607b /src/math/lgammal.c | |
parent | 1a3dce4184895be87b32dcb7c891c5cb87d88a95 (diff) | |
download | musl-8c071f872b2844ca297275176047f8d23eec96a7.tar.gz musl-8c071f872b2844ca297275176047f8d23eec96a7.tar.bz2 musl-8c071f872b2844ca297275176047f8d23eec96a7.tar.xz musl-8c071f872b2844ca297275176047f8d23eec96a7.zip |
other side of the signgam namespace fix: use the internal name
Diffstat (limited to 'src/math/lgammal.c')
-rw-r--r-- | src/math/lgammal.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |