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);
|
||
|
}
|