Files
2015-04-16 09:16:48 +02:00

6 lines
93 B
C

__attribute__((always_inline)) inline float log10f(float x)
{
return log10((double)x);
}