6 lines
93 B
C
6 lines
93 B
C
__attribute__((always_inline)) inline float log10f(float x)
|
|
{
|
|
return log10((double)x);
|
|
}
|
|
|