Home | Info | Community | Development | myReactOS | Contact Us
00001 #include <math.h> 00002 00003 /* 00004 * @implemented 00005 */ 00006 double _cabs( struct _complex z ) 00007 { 00008 return sqrt( z.x*z.x + z.y*z.y ); 00009 // return hypot(z.x,z.y); 00010 } 00011 00012 00013 00014