Welcome to mirror list, hosted at ThFree Co, Russian Federation.

log2f.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42b2c02bbb76fface12db6b00b6f63b09aa6c0ee (plain)
1
2
3
4
5
6
7
8
#include <math.h>
#include "headers/log2f.h"

#undef log2f
float log2f(float x)
{
    return _log2f(x);
}