coverity appeasement
[minix.git] / lib / libm / compat / compat_cabs.c
blobaf6c4572908a967381a19f4461c6fe5afea8f9ee
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.2 2007/08/10 21:20:35 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);