7 lines
105 B
C
7 lines
105 B
C
|
|
__attribute__((always_inline)) inline double exp2f(double x)
|
|
{
|
|
return (exp(x) * 0.693147180559945);
|
|
}
|
|
|