aboutsummaryrefslogtreecommitdiff
path: root/src/math/tgammaf.c
blob: 4d201e48dad0c04e05ff2e54654b2e713e3dd6a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <math.h>

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


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