summaryrefslogtreecommitdiffstats
path: root/lib/libc/arch/mips64/string
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2005-08-07 16:40:13 +0000
committerespie <espie@openbsd.org>2005-08-07 16:40:13 +0000
commit298116df5b000b61a69743d21c92035418df8900 (patch)
tree6101a3af238ab1683f80fb2b5d443e2961f2fe69 /lib/libc/arch/mips64/string
parentsplit off the code that handles dependencies proper, so that we can (later) (diff)
downloadwireguard-openbsd-298116df5b000b61a69743d21c92035418df8900.tar.xz
wireguard-openbsd-298116df5b000b61a69743d21c92035418df8900.zip
zap rcsid.
okay deraadt@ (tested them all)
Diffstat (limited to 'lib/libc/arch/mips64/string')
-rw-r--r--lib/libc/arch/mips64/string/bcmp.S6
-rw-r--r--lib/libc/arch/mips64/string/bcopy.S6
-rw-r--r--lib/libc/arch/mips64/string/bzero.S6
-rw-r--r--lib/libc/arch/mips64/string/ffs.S6
-rw-r--r--lib/libc/arch/mips64/string/index.S6
-rw-r--r--lib/libc/arch/mips64/string/rindex.S6
-rw-r--r--lib/libc/arch/mips64/string/strcmp.S6
-rw-r--r--lib/libc/arch/mips64/string/strlen.S6
8 files changed, 8 insertions, 40 deletions
diff --git a/lib/libc/arch/mips64/string/bcmp.S b/lib/libc/arch/mips64/string/bcmp.S
index fcf8c633ba9..5b1c23b5797 100644
--- a/lib/libc/arch/mips64/string/bcmp.S
+++ b/lib/libc/arch/mips64/string/bcmp.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: bcmp.S,v 1.3 2005/08/07 16:40:15 espie Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,11 +33,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- .text
- .asciz "$OpenBSD: bcmp.S,v 1.2 2004/09/09 16:14:02 pefo Exp $"
-#endif /* LIBC_SCCS */
-
/* bcmp(s1, s2, n) */
LEAF(bcmp, 0)
diff --git a/lib/libc/arch/mips64/string/bcopy.S b/lib/libc/arch/mips64/string/bcopy.S
index dc24b050532..00ef040f11a 100644
--- a/lib/libc/arch/mips64/string/bcopy.S
+++ b/lib/libc/arch/mips64/string/bcopy.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: bcopy.S,v 1.3 2005/08/07 16:40:15 espie Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,11 +33,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- .text
- .asciz "$OpenBSD: bcopy.S,v 1.2 2004/09/09 16:14:02 pefo Exp $"
-#endif /* LIBC_SCCS */
-
/* bcopy(s1, s2, n) */
diff --git a/lib/libc/arch/mips64/string/bzero.S b/lib/libc/arch/mips64/string/bzero.S
index 9a2b37a67b9..52d8ffb67b9 100644
--- a/lib/libc/arch/mips64/string/bzero.S
+++ b/lib/libc/arch/mips64/string/bzero.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: bzero.S,v 1.4 2005/08/07 16:40:15 espie Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,11 +33,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- .text
- .asciz "$OpenBSD: bzero.S,v 1.3 2004/09/09 16:14:02 pefo Exp $"
-#endif /* LIBC_SCCS */
-
/* bzero(s1, n) */
LEAF(bzero, 0)
diff --git a/lib/libc/arch/mips64/string/ffs.S b/lib/libc/arch/mips64/string/ffs.S
index 1c19e1150b1..0fa0803e316 100644
--- a/lib/libc/arch/mips64/string/ffs.S
+++ b/lib/libc/arch/mips64/string/ffs.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: ffs.S,v 1.3 2005/08/07 16:40:15 espie Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,11 +33,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- .text
- .asciz "$OpenBSD: ffs.S,v 1.2 2004/09/09 16:14:02 pefo Exp $"
-#endif /* LIBC_SCCS */
-
/* bit = ffs(value) */
LEAF(ffs, 0)
diff --git a/lib/libc/arch/mips64/string/index.S b/lib/libc/arch/mips64/string/index.S
index 251bf5b611c..3ecc90b5243 100644
--- a/lib/libc/arch/mips64/string/index.S
+++ b/lib/libc/arch/mips64/string/index.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: index.S,v 1.3 2005/08/07 16:40:15 espie Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,11 +33,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- .text
- .asciz "$OpenBSD: index.S,v 1.2 2004/09/09 16:14:02 pefo Exp $"
-#endif /* LIBC_SCCS */
-
LEAF(index, 0)
.set reorder
lbu a2, 0(a0) # get a byte
diff --git a/lib/libc/arch/mips64/string/rindex.S b/lib/libc/arch/mips64/string/rindex.S
index 385e290a260..dea77f02e32 100644
--- a/lib/libc/arch/mips64/string/rindex.S
+++ b/lib/libc/arch/mips64/string/rindex.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: rindex.S,v 1.3 2005/08/07 16:40:15 espie Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,11 +33,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- .text
- .asciz "$OpenBSD: rindex.S,v 1.2 2004/09/09 16:14:02 pefo Exp $"
-#endif /* LIBC_SCCS */
-
LEAF(rindex, 0)
.set reorder
move v0, zero # default if not found
diff --git a/lib/libc/arch/mips64/string/strcmp.S b/lib/libc/arch/mips64/string/strcmp.S
index 7a14638f663..ef093e4f8e0 100644
--- a/lib/libc/arch/mips64/string/strcmp.S
+++ b/lib/libc/arch/mips64/string/strcmp.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: strcmp.S,v 1.3 2005/08/07 16:40:15 espie Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,11 +33,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- .text
- .asciz "$OpenBSD: strcmp.S,v 1.2 2004/09/09 16:14:02 pefo Exp $"
-#endif /* LIBC_SCCS */
-
/*
* NOTE: this version assumes unsigned chars in order to be "8 bit clean".
*/
diff --git a/lib/libc/arch/mips64/string/strlen.S b/lib/libc/arch/mips64/string/strlen.S
index b19171d10d2..bac41601fe3 100644
--- a/lib/libc/arch/mips64/string/strlen.S
+++ b/lib/libc/arch/mips64/string/strlen.S
@@ -1,3 +1,4 @@
+/* $OpenBSD: strlen.S,v 1.3 2005/08/07 16:40:15 espie Exp $ */
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,11 +33,6 @@
#include <machine/asm.h>
-#if defined(LIBC_SCCS)
- .text
- .asciz "$OpenBSD: strlen.S,v 1.2 2004/09/09 16:14:02 pefo Exp $"
-#endif /* LIBC_SCCS */
-
LEAF(strlen, 0)
.set reorder
addu v1, a0, 1