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

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

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