ReactOS 0.4.15-dev-7846-g8ba6c66
exp2f.c File Reference
#include <math.h>
Include dependency graph for exp2f.c:

Go to the source code of this file.

Functions

_Check_return_ float __cdecl exp2f (_In_ float x)
 

Function Documentation

◆ exp2f()

Definition at line 7 of file exp2f.c.

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}
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