aboutsummaryrefslogtreecommitdiff
#include <math.h>

float tgammaf(float x)
{
	return tgamma(x);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif