mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00: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);
|
||
|
}
|