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

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

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