ReactOS 0.4.16-dev-2104-gb84fa49
cabs.c
Go to the documentation of this file.
1#include <math.h>
2
3/*
4 * @implemented
5 */
6double _cabs( struct _complex z )
7{
8 return sqrt( z.x*z.x + z.y*z.y );
9// return hypot(z.x,z.y);
10}
11
12
13
14
double _cabs(struct _complex z)
Definition: cabs.c:6
_ACRTIMP double __cdecl sqrt(double)
Definition: sqrt.c:5
GLdouble GLdouble z
Definition: glext.h:5874
Definition: math.h:42