musl/src/math/lgammaf.c

10 lines
138 B
C
Raw Normal View History

#include <math.h>
extern int __signgam;
float __lgammaf_r(float, int *);
float lgammaf(float x)
{
return __lgammaf_r(x, &__signgam);
}