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

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

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