projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ae4bc4
)
add missing erfcl wrapper for archs where long double is plain double
author
Rich Felker
<dalias@aerifal.cx>
Sun, 28 Jul 2013 15:30:42 +0000
(11:30 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Sun, 28 Jul 2013 15:30:42 +0000
(11:30 -0400)
src/math/erfl.c
patch
|
blob
|
history
diff --git
a/src/math/erfl.c
b/src/math/erfl.c
index fa30d98ee3679783cb246b5b3d6a569939c09848..2fd3c440d55c495ac080b1a06d0347424ca04ef5 100644
(file)
--- 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,