1#include <math.h>
2
3extern int __signgam;
4float __lgammaf_r(float, int *);
5
6float lgammaf(float x)
7{
8	return __lgammaf_r(x, &__signgam);
9}
10