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

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

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