update for HEAD-2003091401
[reactos.git] / lib / crtdll / math / cabs.c
1 #include <msvcrt/math.h>
2
3 /*
4  * @implemented
5  */
6 double _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