ReactOS 0.4.15-dev-7942-gd23573b
powf.c
Go to the documentation of this file.
1
7#if defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_AMD64))
8#pragma warning(suppress:4164) /* intrinsic not declared */
9#pragma function(powf)
10#endif /* _MSC_VER */
11
12double __cdecl pow(double x, double y);
13
14float powf(float x, float y)
15{
16 return (float)pow((double)x, (double)y);
17}
#define __cdecl
Definition: accygwin.h:79
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
double __cdecl pow(double x, double y)
Definition: freeldr.c:112
float powf(float x, float y)
Definition: powf.c:14