mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 19:40:07 +08: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);
|
||
|
}
|