1#include <math.h>
2
3float tgammaf(float x)
4{
5	return tgamma(x);
6}
7