summaryrefslogtreecommitdiff
path: root/src/math/erfc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/erfc.c')
-rw-r--r--src/math/erfc.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/erfc.c b/src/math/erfc.c
new file mode 100644
index 00000000..3aef20d3
--- /dev/null
+++ b/src/math/erfc.c
@@ -0,0 +1,13 @@
+# define TGSOURCE "erfc.c"
+#include "nonstd/tgmath.h"
+#include <math.h>
+
+TYPE TGFN(erfc)(TYPE x)
+{
+ return x;
+}
+
+/*
+STDC(199901)
+LINK(m)
+*/