diff options
Diffstat (limited to 'libm/e_log10.c')
-rw-r--r-- | libm/e_log10.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libm/e_log10.c b/libm/e_log10.c index 877572536..3c62081e6 100644 --- a/libm/e_log10.c +++ b/libm/e_log10.c @@ -79,23 +79,5 @@ double __ieee754_log10(double x) return z+y*log10_2hi; } -/* - * wrapper log10(X) - */ -#ifndef _IEEE_LIBM -double log10(double x) -{ - double z = __ieee754_log10(x); - if (_LIB_VERSION == _IEEE_ || isnan(x)) - return z; - if (x <= 0.0) { - if(x == 0.0) - return __kernel_standard(x, x, 18); /* log10(0) */ - return __kernel_standard(x, x, 19); /* log10(x<0) */ - } - return z; -} -#else strong_alias(__ieee754_log10, log10) -#endif libm_hidden_def(log10) |