/* vi: set sw=4 ts=4: */ /* * Copyright (C) 2008 by Bernhard Reutner-Fischer * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ #include #include "math_private.h" double log2 (double d) { return __ieee754_log2 (d); } libm_hidden_def(log2)