mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
9 lines
104 B
C
9 lines
104 B
C
|
#include <math.h>
|
||
|
#include "headers/log2.h"
|
||
|
|
||
|
#undef log2
|
||
|
double log2(double vx)
|
||
|
{
|
||
|
return _log2(vx);
|
||
|
}
|