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

double gamma(double x)
{
	SIGNAL_SAFE(0);
	return x;
}

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