/* * (c) 2010 Adam Lackorzynski * economic rights: Technische Universität Dresden (Germany) * This file is part of TUD:OS and distributed under the terms of the * GNU Lesser General Public License 2.1. * Please see the COPYING-LGPL-2.1 file for details. */ /* uclibc has it disabled for some unknown reason, lets put it here */ #include float log2f(float x) { return (float)log2((double)x); }