2c3ada9608c080e0913e61d18e2e6c4f51fb55b3
[reactos.git] / reactos / lib / crtdll / math / cabs.c
1 #include <crtdll/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