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

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

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