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