diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-07-28 11:30:42 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-07-28 11:30:42 -0400 |
commit | 7efa12a04ac4a14d243c2276519e152ed815b4d2 (patch) | |
tree | 8f3dd7ec0beecccae064ae01ae29adef80c59392 /src/math/erfl.c | |
parent | 1ae4bc42808111d6b3f50c063de102f162051986 (diff) | |
download | musl-7efa12a04ac4a14d243c2276519e152ed815b4d2.tar.gz musl-7efa12a04ac4a14d243c2276519e152ed815b4d2.tar.xz musl-7efa12a04ac4a14d243c2276519e152ed815b4d2.zip |
add missing erfcl wrapper for archs where long double is plain double
Diffstat (limited to 'src/math/erfl.c')
-rw-r--r-- | src/math/erfl.c | 4 |
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, |