mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
b8ae966634
Addendum to 199adee
.
14 lines
205 B
C
14 lines
205 B
C
|
|
#include <math.h>
|
|
|
|
_Check_return_
|
|
float
|
|
__cdecl
|
|
exp2f(
|
|
_In_ float x)
|
|
{
|
|
/* This below avoids clang to optimize our pow call to exp2 */
|
|
static const float TWO = 2.0f;
|
|
return powf(TWO, x);
|
|
}
|