ReactOS 0.4.15-dev-7842-g558ab78
powf.c File Reference

Go to the source code of this file.

Functions

double __cdecl pow (double x, double y)
 
float powf (float x, float y)
 

Function Documentation

◆ pow()

◆ powf()

float powf ( float  x,
float  y 
)

Definition at line 14 of file powf.c.

15{
16 return (float)pow((double)x, (double)y);
17}
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