summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/lib/libkern/arch/i386/DEFS.h2
-rw-r--r--sys/lib/libkern/arch/i386/SYS.h3
-rw-r--r--sys/lib/libkern/arch/i386/bcmp.S6
-rw-r--r--sys/lib/libkern/arch/i386/bzero.S6
-rw-r--r--sys/lib/libkern/arch/i386/ffs.S6
-rw-r--r--sys/lib/libkern/arch/i386/htonl.S7
-rw-r--r--sys/lib/libkern/arch/i386/htons.S7
-rw-r--r--sys/lib/libkern/arch/i386/locc.S1
-rw-r--r--sys/lib/libkern/arch/i386/memset.S6
-rw-r--r--sys/lib/libkern/arch/i386/ntohl.S7
-rw-r--r--sys/lib/libkern/arch/i386/ntohs.S8
-rw-r--r--sys/lib/libkern/arch/i386/scanc.S1
-rw-r--r--sys/lib/libkern/arch/i386/setjmp.S6
-rw-r--r--sys/lib/libkern/arch/i386/skpc.S1
-rw-r--r--sys/lib/libkern/arch/i386/strcat.S6
-rw-r--r--sys/lib/libkern/arch/i386/strcmp.S6
-rw-r--r--sys/lib/libkern/arch/i386/strcpy.S6
-rw-r--r--sys/lib/libkern/arch/i386/strlen.S6
18 files changed, 32 insertions, 59 deletions
diff --git a/sys/lib/libkern/arch/i386/DEFS.h b/sys/lib/libkern/arch/i386/DEFS.h
index ca70b826b19..32e86b1aca2 100644
--- a/sys/lib/libkern/arch/i386/DEFS.h
+++ b/sys/lib/libkern/arch/i386/DEFS.h
@@ -1,3 +1,3 @@
-/* $Id: DEFS.h,v 1.1 1995/10/18 08:52:51 deraadt Exp $ */
+/* $OpenBSD: DEFS.h,v 1.2 1996/09/27 06:47:43 mickey Exp $ */
#include <machine/asm.h>
diff --git a/sys/lib/libkern/arch/i386/SYS.h b/sys/lib/libkern/arch/i386/SYS.h
index 2bf8406358e..567d017fc96 100644
--- a/sys/lib/libkern/arch/i386/SYS.h
+++ b/sys/lib/libkern/arch/i386/SYS.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: SYS.h,v 1.2 1996/09/27 06:47:44 mickey Exp $ */
+
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -34,7 +36,6 @@
* SUCH DAMAGE.
*
* from: @(#)SYS.h 5.5 (Berkeley) 5/7/91
- * $Id: SYS.h,v 1.1 1995/10/18 08:52:51 deraadt Exp $
*/
#include <machine/asm.h>
diff --git a/sys/lib/libkern/arch/i386/bcmp.S b/sys/lib/libkern/arch/i386/bcmp.S
index 12d344216cc..e1284525257 100644
--- a/sys/lib/libkern/arch/i386/bcmp.S
+++ b/sys/lib/libkern/arch/i386/bcmp.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: bcmp.S,v 1.2 1996/09/27 06:47:44 mickey Exp $ */
+
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -5,10 +7,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- RCSID("$NetBSD: bcmp.S,v 1.5 1995/10/07 09:27:01 mycroft Exp $")
-#endif
-
ENTRY(bcmp)
pushl %edi
pushl %esi
diff --git a/sys/lib/libkern/arch/i386/bzero.S b/sys/lib/libkern/arch/i386/bzero.S
index 64a96c519bb..5821f15cee4 100644
--- a/sys/lib/libkern/arch/i386/bzero.S
+++ b/sys/lib/libkern/arch/i386/bzero.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: bzero.S,v 1.2 1996/09/27 06:47:45 mickey Exp $ */
+
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -5,10 +7,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- RCSID("$NetBSD: bzero.S,v 1.5 1995/10/07 09:27:02 mycroft Exp $")
-#endif
-
ENTRY(bzero)
pushl %edi
movl 8(%esp),%edi
diff --git a/sys/lib/libkern/arch/i386/ffs.S b/sys/lib/libkern/arch/i386/ffs.S
index cf4daaa7fbb..c426659a291 100644
--- a/sys/lib/libkern/arch/i386/ffs.S
+++ b/sys/lib/libkern/arch/i386/ffs.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: ffs.S,v 1.2 1996/09/27 06:47:45 mickey Exp $ */
+
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -5,10 +7,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- RCSID("$NetBSD: ffs.S,v 1.5 1995/10/07 09:27:03 mycroft Exp $")
-#endif
-
ENTRY(ffs)
bsfl 4(%esp),%eax
jz L1 /* ZF is set if all bits are 0 */
diff --git a/sys/lib/libkern/arch/i386/htonl.S b/sys/lib/libkern/arch/i386/htonl.S
index 054ee84cbb0..9cdc2197efa 100644
--- a/sys/lib/libkern/arch/i386/htonl.S
+++ b/sys/lib/libkern/arch/i386/htonl.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: htonl.S,v 1.2 1996/09/27 06:47:45 mickey Exp $ */
+
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -34,15 +36,10 @@
* SUCH DAMAGE.
*
* from: @(#)htonl.s 5.3 (Berkeley) 12/17/90
- * $Id: htonl.S,v 1.1 1995/10/18 08:52:51 deraadt Exp $
*/
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
-RCSID("$Id: htonl.S,v 1.1 1995/10/18 08:52:51 deraadt Exp $")
-#endif
-
/* netorder = htonl(hostorder) */
ENTRY(htonl)
movl 4(%esp),%eax
diff --git a/sys/lib/libkern/arch/i386/htons.S b/sys/lib/libkern/arch/i386/htons.S
index fd5b8e58602..f2639ec1e26 100644
--- a/sys/lib/libkern/arch/i386/htons.S
+++ b/sys/lib/libkern/arch/i386/htons.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: htons.S,v 1.2 1996/09/27 06:47:46 mickey Exp $ */
+
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -34,15 +36,10 @@
* SUCH DAMAGE.
*
* from: @(#)htons.s 5.2 (Berkeley) 12/17/90
- * $Id: htons.S,v 1.1 1995/10/18 08:52:52 deraadt Exp $
*/
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
-RCSID("$Id: htons.S,v 1.1 1995/10/18 08:52:52 deraadt Exp $")
-#endif
-
/* netorder = htons(hostorder) */
ENTRY(htons)
movzwl 4(%esp),%eax
diff --git a/sys/lib/libkern/arch/i386/locc.S b/sys/lib/libkern/arch/i386/locc.S
index ad63e8864dc..141f62c85de 100644
--- a/sys/lib/libkern/arch/i386/locc.S
+++ b/sys/lib/libkern/arch/i386/locc.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: locc.S,v 1.2 1996/09/27 06:47:46 mickey Exp $ */
/* $NetBSD: locc.S,v 1.2 1994/10/26 06:39:10 cgd Exp $ */
/*
diff --git a/sys/lib/libkern/arch/i386/memset.S b/sys/lib/libkern/arch/i386/memset.S
index da90db37568..335de9b0bf8 100644
--- a/sys/lib/libkern/arch/i386/memset.S
+++ b/sys/lib/libkern/arch/i386/memset.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: memset.S,v 1.2 1996/09/27 06:47:47 mickey Exp $ */
+
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -5,10 +7,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- RCSID("$NetBSD: memset.S,v 1.8 1995/04/28 22:58:05 jtc Exp $")
-#endif
-
ENTRY(memset)
pushl %edi
pushl %ebx
diff --git a/sys/lib/libkern/arch/i386/ntohl.S b/sys/lib/libkern/arch/i386/ntohl.S
index 4f05c8e6902..2ab993d4b87 100644
--- a/sys/lib/libkern/arch/i386/ntohl.S
+++ b/sys/lib/libkern/arch/i386/ntohl.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: ntohl.S,v 1.2 1996/09/27 06:47:47 mickey Exp $ */
+
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -34,15 +36,10 @@
* SUCH DAMAGE.
*
* from: @(#)ntohl.s 5.2 (Berkeley) 12/17/90
- * $Id: ntohl.S,v 1.1 1995/10/18 08:52:52 deraadt Exp $
*/
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
-RCSID("$Id: ntohl.S,v 1.1 1995/10/18 08:52:52 deraadt Exp $")
-#endif
-
/* hostorder = ntohl(netorder) */
ENTRY(ntohl)
movl 4(%esp),%eax
diff --git a/sys/lib/libkern/arch/i386/ntohs.S b/sys/lib/libkern/arch/i386/ntohs.S
index 3b004f16927..c5786e33ac5 100644
--- a/sys/lib/libkern/arch/i386/ntohs.S
+++ b/sys/lib/libkern/arch/i386/ntohs.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: ntohs.S,v 1.2 1996/09/27 06:47:47 mickey Exp $ */
+
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -34,15 +36,11 @@
* SUCH DAMAGE.
*
* from: @(#)ntohs.s 5.2 (Berkeley) 12/17/90
- * $Id: ntohs.S,v 1.1 1995/10/18 08:52:52 deraadt Exp $
+ * $Id: ntohs.S,v 1.2 1996/09/27 06:47:47 mickey Exp $
*/
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
-RCSID("$Id: ntohs.S,v 1.1 1995/10/18 08:52:52 deraadt Exp $")
-#endif
-
/* hostorder = ntohs(netorder) */
ENTRY(ntohs)
movzwl 4(%esp),%eax
diff --git a/sys/lib/libkern/arch/i386/scanc.S b/sys/lib/libkern/arch/i386/scanc.S
index e3beedb52a2..45759a1d43d 100644
--- a/sys/lib/libkern/arch/i386/scanc.S
+++ b/sys/lib/libkern/arch/i386/scanc.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: scanc.S,v 1.2 1996/09/27 06:47:48 mickey Exp $ */
/* $NetBSD: scanc.S,v 1.5 1994/10/26 06:39:13 cgd Exp $ */
/*
diff --git a/sys/lib/libkern/arch/i386/setjmp.S b/sys/lib/libkern/arch/i386/setjmp.S
index e81206cc623..2292460010c 100644
--- a/sys/lib/libkern/arch/i386/setjmp.S
+++ b/sys/lib/libkern/arch/i386/setjmp.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: setjmp.S,v 1.2 1996/09/27 06:47:48 mickey Exp $ */
/* $NetBSD: setjmp.S,v 1.5 1994/10/26 06:39:14 cgd Exp $ */
/*-
@@ -38,11 +39,6 @@
* @(#)setjmp.s 5.1 (Berkeley) 4/23/90
*/
-#if defined(LIBC_SCCS)
- .text
- .asciz "$NetBSD: setjmp.S,v 1.5 1994/10/26 06:39:14 cgd Exp $"
-#endif
-
/*
* C library -- _setjmp, _longjmp
*
diff --git a/sys/lib/libkern/arch/i386/skpc.S b/sys/lib/libkern/arch/i386/skpc.S
index 99e0e07b1ed..7f21c1e1fa8 100644
--- a/sys/lib/libkern/arch/i386/skpc.S
+++ b/sys/lib/libkern/arch/i386/skpc.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: skpc.S,v 1.2 1996/09/27 06:47:49 mickey Exp $ */
/* $NetBSD: skpc.S,v 1.2 1994/10/26 06:39:15 cgd Exp $ */
/*
diff --git a/sys/lib/libkern/arch/i386/strcat.S b/sys/lib/libkern/arch/i386/strcat.S
index bd4c63914f2..bbf19431fd8 100644
--- a/sys/lib/libkern/arch/i386/strcat.S
+++ b/sys/lib/libkern/arch/i386/strcat.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: strcat.S,v 1.2 1996/09/27 06:47:49 mickey Exp $ */
+
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -5,10 +7,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- RCSID("$NetBSD: strcat.S,v 1.6 1995/10/07 09:27:08 mycroft Exp $")
-#endif
-
/*
* NOTE: I've unrolled the loop eight times: large enough to make a
* significant difference, and small enough not to totally trash the
diff --git a/sys/lib/libkern/arch/i386/strcmp.S b/sys/lib/libkern/arch/i386/strcmp.S
index 963aa14b0a5..a49d4757953 100644
--- a/sys/lib/libkern/arch/i386/strcmp.S
+++ b/sys/lib/libkern/arch/i386/strcmp.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: strcmp.S,v 1.2 1996/09/27 06:47:49 mickey Exp $ */
+
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -5,10 +7,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- RCSID("$NetBSD: strcmp.S,v 1.6 1995/10/07 09:27:10 mycroft Exp $")
-#endif
-
/*
* NOTE: I've unrolled the loop eight times: large enough to make a
* significant difference, and small enough not to totally trash the
diff --git a/sys/lib/libkern/arch/i386/strcpy.S b/sys/lib/libkern/arch/i386/strcpy.S
index e1531c1935a..bbf7f295404 100644
--- a/sys/lib/libkern/arch/i386/strcpy.S
+++ b/sys/lib/libkern/arch/i386/strcpy.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: strcpy.S,v 1.2 1996/09/27 06:47:50 mickey Exp $ */
+
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -5,10 +7,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- RCSID("$NetBSD: strcpy.S,v 1.6 1995/10/07 09:27:11 mycroft Exp $")
-#endif
-
/*
* NOTE: I've unrolled the loop eight times: large enough to make a
* significant difference, and small enough not to totally trash the
diff --git a/sys/lib/libkern/arch/i386/strlen.S b/sys/lib/libkern/arch/i386/strlen.S
index 766385c6a89..9d668c8ec12 100644
--- a/sys/lib/libkern/arch/i386/strlen.S
+++ b/sys/lib/libkern/arch/i386/strlen.S
@@ -1,3 +1,5 @@
+/* $OpenBSD: strlen.S,v 1.2 1996/09/27 06:47:51 mickey Exp $ */
+
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -5,10 +7,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- RCSID("$NetBSD: strlen.S,v 1.5 1995/10/07 09:27:12 mycroft Exp $")
-#endif
-
ENTRY(strlen)
pushl %edi
movl 8(%esp),%edi /* string address */