newlib/newlib/libm/machine/spu/w_log10.c

8 lines
93 B
C

#include <math.h>
#include "headers/log10.h"
double log10(double x)
{
return _log10(x);
}