summaryrefslogtreecommitdiff
path: root/src/math/tgamma.c
blob: b80584acb8ee408e7bd24e0f70e3d9dec27203f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# define TGSOURCE "tgamma.c"
#include "_tgmath.h"
#include <math.h>

TYPE TGFN(tgamma)(TYPE x)
{
	return x;
}

/*
STDC(199901)
LINK(m)
*/