2 * cabs() wrapper for hypot().
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
7 * Modified by Steven G. Kargl for the long double type.
11 static const char rcsid
[] =
12 "$FreeBSD: src/lib/msun/src/w_cabsl.c,v 1.1 2008/03/30 20:02:03 das Exp $";
19 cabsl(long double complex z
)
21 return hypotl(creall(z
), cimagl(z
));