ReactOS 0.4.15-dev-7842-g558ab78
exp2f.c
Go to the documentation of this file.
1
2#include <math.h>
3
5float
8 _In_ float x)
9{
10 /* This below avoids clang to optimize our pow call to exp2 */
11 static const float TWO = 2.0f;
12 return powf(TWO, x);
13}
#define __cdecl
Definition: accygwin.h:79
_Check_return_ float __cdecl exp2f(_In_ float x)
Definition: exp2f.c:7
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
_Check_return_ float __cdecl powf(_In_ float b, _In_ float e)
Definition: math.h:232
#define _Check_return_
Definition: ms_sal.h:557
#define _In_
Definition: ms_sal.h:308