summaryrefslogtreecommitdiff
path: root/lib/libc/arch/i386
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-07-23 20:55:32 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-07-23 20:55:32 +0000
commite9d332cb6af71b2d65cdb6004debdb399d774993 (patch)
tree51948dc5b09e612265eb4a6eac4f727f428f9b9f /lib/libc/arch/i386
parent48f72858c6c937f2a793a9209ea0bc1c2ede6697 (diff)
tabify
Diffstat (limited to 'lib/libc/arch/i386')
-rw-r--r--lib/libc/arch/i386/gen/frexp.c12
-rw-r--r--lib/libc/arch/i386/stdlib/div.S16
-rw-r--r--lib/libc/arch/i386/stdlib/ldiv.S16
-rw-r--r--lib/libc/arch/i386/string/memcmp.S6
-rw-r--r--lib/libc/arch/i386/sys/sbrk.S4
-rw-r--r--lib/libc/arch/i386/sys/sigprocmask.S4
6 files changed, 29 insertions, 29 deletions
diff --git a/lib/libc/arch/i386/gen/frexp.c b/lib/libc/arch/i386/gen/frexp.c
index f277a5456c4..4da4eac1f31 100644
--- a/lib/libc/arch/i386/gen/frexp.c
+++ b/lib/libc/arch/i386/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:12:29 tholo Exp $";
+static char rcsid[] = "$OpenBSD: frexp.c,v 1.3 1997/07/23 20:55:20 kstailey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -44,14 +44,14 @@ frexp(value, eptr)
int *eptr;
{
union {
- double v;
- struct {
+ double v;
+ struct {
u_int u_mant2 : 32;
u_int u_mant1 : 20;
u_int u_exp : 11;
- u_int u_sign : 1;
- } s;
- } u;
+ u_int u_sign : 1;
+ } s;
+ } u;
if (value) {
u.v = value;
diff --git a/lib/libc/arch/i386/stdlib/div.S b/lib/libc/arch/i386/stdlib/div.S
index 77ea153f0d4..29fef17d0c8 100644
--- a/lib/libc/arch/i386/stdlib/div.S
+++ b/lib/libc/arch/i386/stdlib/div.S
@@ -7,14 +7,14 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: div.S,v 1.2 1996/08/19 08:12:46 tholo Exp $"
+ .asciz "$OpenBSD: div.S,v 1.3 1997/07/23 20:55:20 kstailey Exp $"
#endif
ENTRY(div)
- movl 4(%esp),%eax
- movl 8(%esp),%ecx
- cdq
- idiv %ecx
- movl %eax,4(%esp)
- movl %edx,8(%esp)
- ret
+ movl 4(%esp),%eax
+ movl 8(%esp),%ecx
+ cdq
+ idiv %ecx
+ movl %eax,4(%esp)
+ movl %edx,8(%esp)
+ ret
diff --git a/lib/libc/arch/i386/stdlib/ldiv.S b/lib/libc/arch/i386/stdlib/ldiv.S
index 4d6d2623de8..2cedafa783f 100644
--- a/lib/libc/arch/i386/stdlib/ldiv.S
+++ b/lib/libc/arch/i386/stdlib/ldiv.S
@@ -7,14 +7,14 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: ldiv.S,v 1.2 1996/08/19 08:12:48 tholo Exp $"
+ .asciz "$OpenBSD: ldiv.S,v 1.3 1997/07/23 20:55:21 kstailey Exp $"
#endif
ENTRY(ldiv)
- movl 4(%esp),%eax
- movl 8(%esp),%ecx
- cdq
- idiv %ecx
- movl %eax,4(%esp)
- movl %edx,8(%esp)
- ret
+ movl 4(%esp),%eax
+ movl 8(%esp),%ecx
+ cdq
+ idiv %ecx
+ movl %eax,4(%esp)
+ movl %edx,8(%esp)
+ ret
diff --git a/lib/libc/arch/i386/string/memcmp.S b/lib/libc/arch/i386/string/memcmp.S
index 1c7938044f4..fdd49c948ce 100644
--- a/lib/libc/arch/i386/string/memcmp.S
+++ b/lib/libc/arch/i386/string/memcmp.S
@@ -7,7 +7,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: memcmp.S,v 1.2 1996/08/19 08:13:03 tholo Exp $"
+ .asciz "$OpenBSD: memcmp.S,v 1.3 1997/07/23 20:55:21 kstailey Exp $"
#endif
ENTRY(memcmp)
@@ -40,8 +40,8 @@ L5: movl $4,%ecx /* We know that one of the next */
repe
cmpsb
L6: movzbl -1(%edi),%eax /* Perform unsigned comparison */
- movzbl -1(%esi),%edx
- subl %edx,%eax
+ movzbl -1(%esi),%edx
+ subl %edx,%eax
popl %esi
popl %edi
ret
diff --git a/lib/libc/arch/i386/sys/sbrk.S b/lib/libc/arch/i386/sys/sbrk.S
index b8426aacba5..1cbafaae322 100644
--- a/lib/libc/arch/i386/sys/sbrk.S
+++ b/lib/libc/arch/i386/sys/sbrk.S
@@ -37,8 +37,8 @@
#include "SYS.h"
#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: sbrk.S,v 1.2 1996/08/19 08:13:37 tholo Exp $"
+ .text
+ .asciz "$OpenBSD: sbrk.S,v 1.3 1997/07/23 20:55:22 kstailey Exp $"
#endif /* SYSLIBC_SCCS */
.globl _end
diff --git a/lib/libc/arch/i386/sys/sigprocmask.S b/lib/libc/arch/i386/sys/sigprocmask.S
index 1cfd2c3e2b6..17853ed793d 100644
--- a/lib/libc/arch/i386/sys/sigprocmask.S
+++ b/lib/libc/arch/i386/sys/sigprocmask.S
@@ -37,8 +37,8 @@
#include "SYS.h"
#if defined(SYSLIBC_SCCS)
- .text
- .asciz "$OpenBSD: sigprocmask.S,v 1.2 1996/08/19 08:13:41 tholo Exp $"
+ .text
+ .asciz "$OpenBSD: sigprocmask.S,v 1.3 1997/07/23 20:55:23 kstailey Exp $"
#endif /* SYSLIBC_SCCS */
ENTRY(sigprocmask)