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/mips | |
parent | 48f72858c6c937f2a793a9209ea0bc1c2ede6697 (diff) |
tabify
Diffstat (limited to 'lib/libc/arch/mips')
-rw-r--r-- | lib/libc/arch/mips/gen/frexp.c | 14 | ||||
-rw-r--r-- | lib/libc/arch/mips/gen/setjmp.S | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/lib/libc/arch/mips/gen/frexp.c b/lib/libc/arch/mips/gen/frexp.c index 04806250ec1..181e1dc735d 100644 --- a/lib/libc/arch/mips/gen/frexp.c +++ b/lib/libc/arch/mips/gen/frexp.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: frexp.c,v 1.2 1996/08/19 08:16:00 tholo Exp $"; +static char rcsid[] = "$OpenBSD: frexp.c,v 1.3 1997/07/23 20:55:24 kstailey Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -45,21 +45,21 @@ frexp(value, eptr) int *eptr; { union { - double v; - struct { + double v; + struct { #if BYTE_ORDER == LITTLE_ENDIAN u_int u_mant2 : 32; u_int u_mant1 : 20; u_int u_exp : 11; - u_int u_sign : 1; + u_int u_sign : 1; #else - u_int u_sign : 1; + u_int u_sign : 1; u_int u_exp : 11; u_int u_mant1 : 20; u_int u_mant2 : 32; #endif - } s; - } u; + } s; + } u; if (value) { u.v = value; diff --git a/lib/libc/arch/mips/gen/setjmp.S b/lib/libc/arch/mips/gen/setjmp.S index b23f9180259..0abfed8948a 100644 --- a/lib/libc/arch/mips/gen/setjmp.S +++ b/lib/libc/arch/mips/gen/setjmp.S @@ -39,8 +39,8 @@ #include <machine/regnum.h> #if defined(LIBC_SCCS) - .text - .asciz "$OpenBSD: setjmp.S,v 1.5 1996/08/19 08:16:05 tholo Exp $" + .text + .asciz "$OpenBSD: setjmp.S,v 1.6 1997/07/23 20:55:25 kstailey Exp $" #endif /* LIBC_SCCS */ /* |