mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 19:40:07 +08:00
9 lines
106 B
C
9 lines
106 B
C
|
#include <math.h>
|
||
|
#include "headers/log2f.h"
|
||
|
|
||
|
#undef log2f
|
||
|
float log2f(float x)
|
||
|
{
|
||
|
return _log2f(x);
|
||
|
}
|