branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / math / cabs.c
1 #include <msvcrt/math.h>
2
3 double _cabs( struct _complex z )
4 {
5         return sqrt( z.x*z.x + z.y*z.y );
6 //      return hypot(z.x,z.y);
7 }
8
9
10
11