diff options
author | 2008-09-13 21:25:40 +0000 | |
---|---|---|
committer | 2008-09-13 21:25:40 +0000 | |
commit | 1781148dcf77f36e7158eb0233b1b8217c0f0299 (patch) | |
tree | 2693e9bcd50e3a60b29db14185719dd029644d12 /lib/libm/noieee_src | |
parent | Kernel map is supposed to only allocate from the limited kernel addresses, (diff) | |
download | wireguard-openbsd-1781148dcf77f36e7158eb0233b1b8217c0f0299.tar.xz wireguard-openbsd-1781148dcf77f36e7158eb0233b1b8217c0f0299.zip |
remove z_abs. ok millert@
Diffstat (limited to 'lib/libm/noieee_src')
-rw-r--r-- | lib/libm/noieee_src/n_cabs.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/libm/noieee_src/n_cabs.c b/lib/libm/noieee_src/n_cabs.c index d3dc5964cbb..db0326c5271 100644 --- a/lib/libm/noieee_src/n_cabs.c +++ b/lib/libm/noieee_src/n_cabs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: n_cabs.c,v 1.10 2008/07/17 15:36:28 martynas Exp $ */ +/* $OpenBSD: n_cabs.c,v 1.11 2008/09/13 21:25:40 martynas Exp $ */ /* $NetBSD: n_cabs.c,v 1.1 1995/10/10 23:36:39 ragge Exp $ */ /* * Copyright (c) 1985, 1993 @@ -177,12 +177,6 @@ cabs(struct complex z) return hypot(z.x,z.y); } -double -z_abs(struct complex *z) -{ - return hypot(z->x,z->y); -} - /* A faster but less accurate version of cabs(x,y) */ #if 0 double |