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

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

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