ReactOS 0.4.16-dev-226-g79f2289
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:110
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