xref: /relibc/openlibm/src/w_cabsl.c (revision f22d7db106c79fc95c04cbefa839de1e07716a99)
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 "cdefs-compat.h"
11 //__FBSDID("$FreeBSD: src/lib/msun/src/w_cabsl.c,v 1.1 2008/03/30 20:02:03 das Exp $");
12 
13 #include <complex.h>
14 #include <openlibm.h>
15 #include "math_private.h"
16 
17 DLLEXPORT long double
18 cabsl(long double complex z)
19 {
20 	return hypotl(creall(z), cimagl(z));
21 }
22