ReactOS 0.4.15-dev-7942-gd23573b
_hypotf.c File Reference
#include <math.h>
Include dependency graph for _hypotf.c:

Go to the source code of this file.

Functions

_Check_return_ float __cdecl _hypotf (_In_ float x, _In_ float y)
 

Function Documentation

◆ _hypotf()

_Check_return_ float __cdecl _hypotf ( _In_ float  x,
_In_ float  y 
)

Definition at line 11 of file _hypotf.c.

14{
15 return (float)_hypot((double)x, (double)y);
16}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
_Check_return_ _CRTIMP double __cdecl _hypot(_In_ double x, _In_ double y)