:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / 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