summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-28 11:30:42 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-28 11:30:42 -0400
commit7efa12a04ac4a14d243c2276519e152ed815b4d2 (patch)
tree8f3dd7ec0beecccae064ae01ae29adef80c59392 /src
parent1ae4bc42808111d6b3f50c063de102f162051986 (diff)
downloadmusl-7efa12a04ac4a14d243c2276519e152ed815b4d2.tar.gz
add missing erfcl wrapper for archs where long double is plain double
Diffstat (limited to 'src')
-rw-r--r--src/math/erfl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/math/erfl.c b/src/math/erfl.c
index fa30d98e..2fd3c440 100644
--- a/src/math/erfl.c
+++ b/src/math/erfl.c
@@ -105,6 +105,10 @@ long double erfl(long double x)
{
return erf(x);
}
+long double erfcl(long double x)
+{
+ return erfc(x);
+}
#elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384
static const long double
erx = 0.845062911510467529296875L,