summaryrefslogtreecommitdiff
path: root/src/math/gamma.c
blob: d26da45ba7cd61b4321444af02fb1484518d65dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#include <math.h>

double gamma(double x)
{
	return x;
}

/*
XOPEN(4,600)
LINK(m)
*/


#endif