summaryrefslogtreecommitdiff
path: root/src/math/erf.c
blob: 3305948098c351d00e1663da9cc612ff4859eb7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# define TGSOURCE "erf.c"
#include "_tgmath.h"
#include <math.h>

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

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