blob: a4786c546aeb97c2face7a0882517ee452d5d63e [file] [log] [blame]
#include <math.h>
extern int __signgam;
float __lgammaf_r(float, int*);
float lgammaf(float x) {
return __lgammaf_r(x, &__signgam);
}