diff --git a/src/pow10.h b/src/pow10.h index 02a9b33b26305a89c3440eead9c85f26cd47953f..3414072a82c4e1f3a176fb8119a8122e51e4ef6d 100644 --- a/src/pow10.h +++ b/src/pow10.h @@ -38,7 +38,7 @@ * * @param x The input value. */ -__attribute__((always_inline, const)) INLINE static double pow10( +__attribute__((always_inline, const)) INLINE static double exp10( const double x) { return exp(x * M_LN10); @@ -52,7 +52,7 @@ __attribute__((always_inline, const)) INLINE static double pow10( * * @param x The input value. */ -__attribute__((always_inline, const)) INLINE static float pow10f( +__attribute__((always_inline, const)) INLINE static float exp10f( const float x) { return expf(x * (float)M_LN10);