diff --git a/lib/msun/src/w_cabsl.c b/lib/msun/src/w_cabsl.c new file mode 100644 index 00000000000..b715e0c340d --- /dev/null +++ b/lib/msun/src/w_cabsl.c @@ -0,0 +1,20 @@ +/* + * cabs() wrapper for hypot(). + * + * Written by J.T. Conklin, + * Placed into the Public Domain, 1994. + * + * Modified by Steven G. Kargl for the long double type. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#include + +long double +cabsl(long double complex z) +{ + return hypotl(creall(z), cimagl(z)); +}