ReactOS 0.4.16-dev-2104-gb84fa49
sqrtf.c
Go to the documentation of this file.
1
6#include <math.h>
7
8#ifdef _MSC_VER
9#pragma function(sqrtf)
10#endif
11
13float
15sqrtf(float x)
16{
17 return (float)sqrt((double)x);
18}
#define __cdecl
Definition: corecrt.h:121
_ACRTIMP double __cdecl sqrt(double)
Definition: sqrt.c:5
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
#define sqrtf(x)
Definition: mymath.h:59
#define _Check_return_
Definition: no_sal2.h:60