diff options
Diffstat (limited to 'lib/libm/math.c')
-rw-r--r-- | lib/libm/math.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/libm/math.c b/lib/libm/math.c index 623bedb3d..ed3635e53 100644 --- a/lib/libm/math.c +++ b/lib/libm/math.c @@ -113,10 +113,6 @@ float log10f(float x) { return logf(x) / (float)_M_LN10; } float tanhf(float x) { return sinhf(x) / coshf(x); } // TODO we need import these functions from some library (eg musl or newlib) -float acoshf(float x) { return 0.0; } -float asinhf(float x) { return 0.0; } -float atanhf(float x) { return 0.0; } -float tanf(float x) { return 0.0; } float tgammaf(float x) { return 0.0; } float lgammaf(float x) { return 0.0; } float erff(float x) { return 0.0; } |