ReactOS 0.4.15-dev-7953-g1f49173
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}
_STLP_DECLSPEC complex< float > _STLP_CALL sqrt(const complex< float > &)
Definition: complex.cpp:188
#define __cdecl
Definition: accygwin.h:79
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
#define _Check_return_
Definition: ms_sal.h:557
#define sqrtf(x)
Definition: mymath.h:59