diff options
Diffstat (limited to 'libm/w_log2.c')
-rw-r--r-- | libm/w_log2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libm/w_log2.c b/libm/w_log2.c index 7b1a1b18d..b5cc65952 100644 --- a/libm/w_log2.c +++ b/libm/w_log2.c @@ -4,10 +4,11 @@ * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ + #include <math.h> #include "math_private.h" -double log2 (double d) +double log2(double d) { - return __ieee754_log2 (d); + return __ieee754_log2(d); } |