ReactOS 0.4.15-dev-8614-gbc76250
cabs.c File Reference
#include "libm.h"
Include dependency graph for cabs.c:

Go to the source code of this file.

Functions

double __cdecl _cabs (COMPLEX z)
 

Function Documentation

◆ _cabs()

double __cdecl _cabs ( COMPLEX  z)

Definition at line 29 of file cabs.c.

30{
31 /* Returns the absolute value of a complex number z
32 with real part a and complex part b. */
33return _hypot(z.x, z.y);
34}
GLdouble GLdouble z
Definition: glext.h:5874
_Check_return_ _CRTIMP double __cdecl _hypot(_In_ double x, _In_ double y)