Expand PMF_FN_* macros.
[netbsd-mini2440.git] / lib / libm / compat / compat_cabs.c
blobe6888f861d069828f43ef24d83f6c123d757a6e7
1 /*
2 * cabs() wrapper for hypot().
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBM_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: compat_cabs.c,v 1.1 2007/02/22 22:08:19 drochner Exp $");
11 #endif
13 #include "../src/namespace.h"
14 #include <math.h>
16 struct complex {
17 double x;
18 double y;
21 double cabs(struct complex);
22 __warn_references(cabs, "warning: reference to compatibility cabs()");
24 double
25 cabs(struct complex z)
28 return hypot(z.x, z.y);