diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-19 18:30:35 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-19 18:30:35 -0400 |
commit | 01084202815fefbb7db23825d8b11a570c455e13 (patch) | |
tree | 5626a4356831b9e280ef16ab337b6699039a013b /src/math/erfl.c | |
parent | bug fix: wrong opcode for writing long long (diff) | |
parent | remove long double const workarounds (diff) | |
download | grovel-01084202815fefbb7db23825d8b11a570c455e13.tar.gz grovel-01084202815fefbb7db23825d8b11a570c455e13.tar.xz |
Merge remote branch 'nsz/master'
Diffstat (limited to 'src/math/erfl.c')
-rw-r--r-- | src/math/erfl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/erfl.c b/src/math/erfl.c index c38d7450..a80c2ce1 100644 --- a/src/math/erfl.c +++ b/src/math/erfl.c @@ -103,7 +103,7 @@ #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 long double erfl(long double x) { - return erfl(x); + return erf(x); } #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 static const long double |