X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flgammaf_r.c;h=f1adcf69f3c7e4ba63d9a2b32479822bcb4986d3;hb=b1cbd70743f0e0e0295e92c3e38d7599114db8c6;hp=c6280f5be41d509202f34a8d9a19243ed55e6f89;hpb=8d0a6f7a1c47b280647f292e6864b85b72c71f2e;p=musl diff --git a/src/math/lgammaf_r.c b/src/math/lgammaf_r.c index c6280f5b..f1adcf69 100644 --- a/src/math/lgammaf_r.c +++ b/src/math/lgammaf_r.c @@ -134,7 +134,7 @@ static float sin_pif(float x) } -float lgammaf_r(float x, int *signgamp) +float __lgammaf_r(float x, int *signgamp) { float t,y,z,nadj,p,p1,p2,p3,q,r,w; int32_t hx; @@ -248,3 +248,5 @@ float lgammaf_r(float x, int *signgamp) r = nadj - r; return r; } + +weak_alias(__lgammaf_r, lgammaf_r);