X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flgammaf.c;h=b3d996cf29ec42e810f549e4369bb20915ab9e4b;hb=30df206cb0c66848142898115d301a0d80333d0f;hp=932535344cf16c85fe9b86a814b8b8306fd5ddd6;hpb=de7db6e927e568c52eaffeb51d7726a094ed0180;p=musl 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