summaryrefslogtreecommitdiff
path: root/src/math/gamma.c
blob: 326d5154222267a10971ed6f8262ed9cb6602917 (plain)
1
2
3
4
5
6
7
8
9
10
#include <math.h>

double gamma(double x)
{
	return x;
}

/*
XOPEN(4,600)
*/