summaryrefslogtreecommitdiffstats
path: root/libm/w_log2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libm/w_log2.c')
-rw-r--r--libm/w_log2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libm/w_log2.c b/libm/w_log2.c
index ec274f761..b5cc65952 100644
--- a/libm/w_log2.c
+++ b/libm/w_log2.c
@@ -4,11 +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);
}
-libm_hidden_def(log2)