2 * cabsf() wrapper for hypotf().
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
9 #if defined(LIBM_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: compat_cabsf.c,v 1.1 2007/02/22 22:08:19 drochner Exp $");
13 #include "../src/namespace.h"
21 float cabsf
__P((struct complex));
22 __warn_references(cabsf
, "warning: reference to compatibility cabsf()");
25 cabsf(struct complex z
)
28 return hypotf(z
.x
, z
.y
);