tgammaf.c 65 字节
Newer Older
1 2 3 4
#include <math.h>

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