ReactOS 0.4.16-dev-2104-gb84fa49
_hypotf.c
Go to the documentation of this file.
1
2#include <math.h>
3
4#if (_MSC_VER >= 1920)
5#pragma function(_hypotf)
6#endif
7
9float
12 _In_ float x,
13 _In_ float y)
14{
15 return (float)_hypot((double)x, (double)y);
16}
_Check_return_ float __cdecl _hypotf(_In_ float x, _In_ float y)
Definition: _hypotf.c:11
#define __cdecl
Definition: corecrt.h:121
_ACRTIMP double __cdecl _hypot(double, double)
Definition: hypot.c:34
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
#define _Check_return_
Definition: no_sal2.h:60
#define _In_
Definition: no_sal2.h:158