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

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

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