xref: /aosp_15_r20/bionic/libm/upstream-freebsd/lib/msun/src/w_cabs.c (revision 8d67ca893c1523eb926b9080dbe4e2ffd2a27ba1)
1 /*
2  * cabs() wrapper for hypot().
3  *
4  * Written by J.T. Conklin, <[email protected]>
5  * Placed into the Public Domain, 1994.
6  */
7 
8 #include <complex.h>
9 #include <float.h>
10 #include <math.h>
11 
12 double
cabs(double complex z)13 cabs(double complex z)
14 {
15 	return hypot(creal(z), cimag(z));
16 }
17 
18 #if LDBL_MANT_DIG == 53
19 __weak_reference(cabs, cabsl);
20 #endif
21