reactos/lib/sdk/crt/math/cabs.c
2013-06-16 22:01:41 +00:00

14 lines
145 B
C

#include <math.h>
/*
* @implemented
*/
double _cabs( struct _complex z )
{
return sqrt( z.x*z.x + z.y*z.y );
// return hypot(z.x,z.y);
}