summaryrefslogtreecommitdiffstatshomepage
path: root/lib/libm/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libm/math.c')
-rw-r--r--lib/libm/math.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/libm/math.c b/lib/libm/math.c
index 6b65202cf0..d2c3949957 100644
--- a/lib/libm/math.c
+++ b/lib/libm/math.c
@@ -52,10 +52,14 @@ static const float _M_LN10 = 2.30258509299404; // 0x40135d8e
float log10f(float x) { return logf(x) / (float)_M_LN10; }
float tanhf(float x) {
- if (isinf(x)) {
- return copysignf(1, x);
+ int sign = 0;
+ if (x < 0) {
+ sign = 1;
+ x = -x;
}
- return sinhf(x) / coshf(x);
+ x = expm1f(-2 * x);
+ x = x / (x + 2);
+ return sign ? x : -x;
}
/*****************************************************************************/