ReactOS 0.4.17-dev-806-gffa4164
exp2.c
Go to the documentation of this file.
1
2#include <math.h>
3
5double
8 _In_ double x)
9{
10 /* This below avoids clang to optimize our pow call to exp2 */
11 static const double TWO = 2.0;
12 return pow(TWO, x);
13}
BYTE exp2[512/16]
Definition: bcrypt.c:2462
#define __cdecl
Definition: corecrt.h:121
double pow(double x, double y)
Definition: freeldr.c:179
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
#define _Check_return_
Definition: no_sal2.h:60
#define _In_
Definition: no_sal2.h:158