xref: /freebsd/lib/msun/src/w_cabsl.c (revision 84943d6f38e936ac3b7a3947ca26eeb27a39f938)
1 /*
2  * cabs() wrapper for hypot().
3  *
4  * Written by J.T. Conklin, <jtc@wimsey.com>
5  * Placed into the Public Domain, 1994.
6  *
7  * Modified by Steven G. Kargl for the long double type.
8  */
9 
10 #include <complex.h>
11 #include <math.h>
12 
13 long double
14 cabsl(long double complex z)
15 {
16 	return hypotl(creall(z), cimagl(z));
17 }
18