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/lgammaf.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/lgammaf.c')
-rw-r--r-- | src/math/lgammaf.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 |