ReactOS 0.4.15-dev-7958-gcd0bb1a
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}
#define __cdecl
Definition: accygwin.h:79
_Check_return_ double __cdecl exp2(_In_ double x)
Definition: exp2.c:7
double pow(double x, double y)
Definition: freeldr.c:112
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
#define _Check_return_
Definition: ms_sal.h:557
#define _In_
Definition: ms_sal.h:308