diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-06-21 08:26:20 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-06-21 08:26:20 +0000 |
commit | da0db31a60ab89941238c857fbbe25284941857f (patch) | |
tree | e99f3a4def6f12c36c853509c8b60e0ab3999ee0 /lib/libm/noieee_src/n_acosh.c | |
parent | 0d378bf6f459984aa2f7ca84f810d5d98e8f8f15 (diff) |
cleaning up, no functional changes
- no support for National 32000, removing ns32000/national ifdefs maze
- remove tahoe defs
- ansify
looks fine to millert@; who also noticed rint removal
Diffstat (limited to 'lib/libm/noieee_src/n_acosh.c')
-rw-r--r-- | lib/libm/noieee_src/n_acosh.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libm/noieee_src/n_acosh.c b/lib/libm/noieee_src/n_acosh.c index 07faacead2f..347cf1c8a0a 100644 --- a/lib/libm/noieee_src/n_acosh.c +++ b/lib/libm/noieee_src/n_acosh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: n_acosh.c,v 1.6 2008/06/12 22:43:36 martynas Exp $ */ +/* $OpenBSD: n_acosh.c,v 1.7 2008/06/21 08:26:19 martynas Exp $ */ /* $NetBSD: n_acosh.c,v 1.1 1995/10/10 23:36:33 ragge Exp $ */ /* * Copyright (c) 1985, 1993 @@ -85,8 +85,7 @@ ic(ln2lo, 1.9082149292705877000E-10,-33, 1.A39EF35793C76) #endif double -acosh(x) - double x; +acosh(double x) { double t,big=1.E20; /* big+1==big */ |