summaryrefslogtreecommitdiff
path: root/libm/w_log2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libm/w_log2.c')
-rw-r--r--libm/w_log2.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libm/w_log2.c b/libm/w_log2.c
deleted file mode 100644
index b5cc65952..000000000
--- a/libm/w_log2.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* vi: set sw=4 ts=4: */
-/*
- * Copyright (C) 2008 by Bernhard Reutner-Fischer <uclibc@uclibc.org>
- *
- * 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)
-{
- return __ieee754_log2(d);
-}