diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-23 20:55:32 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-23 20:55:32 +0000 |
commit | e9d332cb6af71b2d65cdb6004debdb399d774993 (patch) | |
tree | 51948dc5b09e612265eb4a6eac4f727f428f9b9f /lib/libc/arch/alpha | |
parent | 48f72858c6c937f2a793a9209ea0bc1c2ede6697 (diff) |
tabify
Diffstat (limited to 'lib/libc/arch/alpha')
-rw-r--r-- | lib/libc/arch/alpha/gen/frexp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/alpha/gen/frexp.c b/lib/libc/arch/alpha/gen/frexp.c index 09c462214d4..bf7eeace05b 100644 --- a/lib/libc/arch/alpha/gen/frexp.c +++ b/lib/libc/arch/alpha/gen/frexp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: frexp.c,v 1.3 1996/11/13 21:20:17 niklas Exp $ */ +/* $OpenBSD: frexp.c,v 1.4 1997/07/23 20:55:17 kstailey Exp $ */ /* $NetBSD: frexp.c,v 1.1 1995/02/10 17:50:22 cgd Exp $ */ /* @@ -29,7 +29,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: frexp.c,v 1.3 1996/11/13 21:20:17 niklas Exp $"; +static char *rcsid = "$OpenBSD: frexp.c,v 1.4 1997/07/23 20:55:17 kstailey Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -42,9 +42,9 @@ frexp(value, eptr) int *eptr; { union doub { - double v; + double v; struct ieee_double s; - } u; + } u; if (value) { u.v = value; |