diff options
Diffstat (limited to 'lib/libc/arch/sparc/gen/frexp.c')
-rw-r--r-- | lib/libc/arch/sparc/gen/frexp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/sparc/gen/frexp.c b/lib/libc/arch/sparc/gen/frexp.c index 125cf252bd0..2dcc0300fc9 100644 --- a/lib/libc/arch/sparc/gen/frexp.c +++ b/lib/libc/arch/sparc/gen/frexp.c @@ -36,7 +36,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: frexp.c,v 1.2 1996/08/19 08:17:36 tholo Exp $"; +static char rcsid[] = "$OpenBSD: frexp.c,v 1.3 1997/07/23 20:55:30 kstailey Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -53,7 +53,7 @@ frexp(value, eptr) int *eptr; { union { - double v; + double v; struct ieee_double s; } u; |