#include "FloatLog.h"
#include <cmath>


float floatLog(float x)
{
    return ::logf(x);
}


float floatLog2(float x)
{
    return ::log2f(x);
}