summaryrefslogtreecommitdiffstats
path: root/lib/libc/arch/vax/string
diff options
context:
space:
mode:
authortholo <tholo@openbsd.org>1996-08-19 08:10:10 +0000
committertholo <tholo@openbsd.org>1996-08-19 08:10:10 +0000
commite9b2b68ca3a6cce2632b4a73cc801bbb6f19c001 (patch)
treeae28f47ec89be7d99e138e5b76dfb015e512c6b2 /lib/libc/arch/vax/string
parentOops major {fd = 2} was doubly specified (diff)
downloadwireguard-openbsd-e9b2b68ca3a6cce2632b4a73cc801bbb6f19c001.tar.xz
wireguard-openbsd-e9b2b68ca3a6cce2632b4a73cc801bbb6f19c001.zip
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/arch/vax/string')
-rw-r--r--lib/libc/arch/vax/string/Makefile.inc2
-rw-r--r--lib/libc/arch/vax/string/bcmp.S6
-rw-r--r--lib/libc/arch/vax/string/bcopy.S8
-rw-r--r--lib/libc/arch/vax/string/bzero.S8
-rw-r--r--lib/libc/arch/vax/string/ffs.S8
-rw-r--r--lib/libc/arch/vax/string/index.S6
-rw-r--r--lib/libc/arch/vax/string/memcmp.S6
-rw-r--r--lib/libc/arch/vax/string/memcpy.S8
-rw-r--r--lib/libc/arch/vax/string/memmove.S8
-rw-r--r--lib/libc/arch/vax/string/memset.S8
10 files changed, 39 insertions, 29 deletions
diff --git a/lib/libc/arch/vax/string/Makefile.inc b/lib/libc/arch/vax/string/Makefile.inc
index 719daa6aa57..0714508b2e0 100644
--- a/lib/libc/arch/vax/string/Makefile.inc
+++ b/lib/libc/arch/vax/string/Makefile.inc
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.2 1996/05/19 15:57:37 ragge Exp $
+# $OpenBSD: Makefile.inc,v 1.3 1996/08/19 08:18:43 tholo Exp $
SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.S memset.S \
rindex.c strcat.c strcmp.c strcpy.c strcspn.c strlen.c \
diff --git a/lib/libc/arch/vax/string/bcmp.S b/lib/libc/arch/vax/string/bcmp.S
index 45fe796e439..c08ae03b149 100644
--- a/lib/libc/arch/vax/string/bcmp.S
+++ b/lib/libc/arch/vax/string/bcmp.S
@@ -1,4 +1,3 @@
-/* $NetBSD: bcmp.S,v 1.1 1996/05/19 15:57:38 ragge Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,7 +31,10 @@
* SUCH DAMAGE.
*/
-/* bcmp(s1, s2, n) */
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: bcmp.S,v 1.2 1996/08/19 08:18:44 tholo Exp $"
+#endif /* LIBC_SCCS */
#include "DEFS.h"
diff --git a/lib/libc/arch/vax/string/bcopy.S b/lib/libc/arch/vax/string/bcopy.S
index ff1d2f5933e..134001ef660 100644
--- a/lib/libc/arch/vax/string/bcopy.S
+++ b/lib/libc/arch/vax/string/bcopy.S
@@ -1,4 +1,3 @@
-/* $NetBSD: bcopy.S,v 1.1 1996/05/19 15:57:39 ragge Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,9 +31,10 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
- .asciz "@(#)bcopy.s 8.1 (Berkeley) 6/4/93"
-#endif /* LIBC_SCCS and not lint */
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: bcopy.S,v 1.2 1996/08/19 08:18:45 tholo Exp $"
+#endif /* LIBC_SCCS */
/* bcopy(from, to, size) */
diff --git a/lib/libc/arch/vax/string/bzero.S b/lib/libc/arch/vax/string/bzero.S
index 17c7c38d41b..62f65a7f547 100644
--- a/lib/libc/arch/vax/string/bzero.S
+++ b/lib/libc/arch/vax/string/bzero.S
@@ -1,4 +1,3 @@
-/* $NetBSD: bzero.S,v 1.1 1996/05/19 15:57:40 ragge Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,9 +31,10 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
- .asciz "@(#)bzero.s 8.1 (Berkeley) 6/4/93"
-#endif /* LIBC_SCCS and not lint */
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: bzero.S,v 1.2 1996/08/19 08:18:47 tholo Exp $"
+#endif /* LIBC_SCCS */
/* bzero(base, length) */
diff --git a/lib/libc/arch/vax/string/ffs.S b/lib/libc/arch/vax/string/ffs.S
index 69298579f88..2bda2a135a9 100644
--- a/lib/libc/arch/vax/string/ffs.S
+++ b/lib/libc/arch/vax/string/ffs.S
@@ -1,4 +1,3 @@
-/* $NetBSD: ffs.S,v 1.1 1996/05/19 15:57:41 ragge Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,9 +31,10 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
- .asciz "@(#)ffs.s 8.1 (Berkeley) 6/4/93"
-#endif /* LIBC_SCCS and not lint */
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: ffs.S,v 1.2 1996/08/19 08:18:48 tholo Exp $"
+#endif /* LIBC_SCCS */
/* bit = ffs(value) */
diff --git a/lib/libc/arch/vax/string/index.S b/lib/libc/arch/vax/string/index.S
index 07842c5b3d1..378f23d3512 100644
--- a/lib/libc/arch/vax/string/index.S
+++ b/lib/libc/arch/vax/string/index.S
@@ -1,4 +1,3 @@
-/* $NetBSD: index.S,v 1.1 1996/05/19 15:57:43 ragge Exp $ */
/*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,6 +31,11 @@
* SUCH DAMAGE.
*/
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: index.S,v 1.2 1996/08/19 08:18:49 tholo Exp $"
+#endif /* LIBC_SCCS */
+
/*
* Find the first occurence of c in the string cp.
* Return pointer to match or null pointer.
diff --git a/lib/libc/arch/vax/string/memcmp.S b/lib/libc/arch/vax/string/memcmp.S
index 5e2ecce59da..f36c40f19e1 100644
--- a/lib/libc/arch/vax/string/memcmp.S
+++ b/lib/libc/arch/vax/string/memcmp.S
@@ -1,4 +1,3 @@
-/* $NetBSD: memcmp.S,v 1.1 1996/05/19 15:57:44 ragge Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,6 +31,11 @@
* SUCH DAMAGE.
*/
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: memcmp.S,v 1.2 1996/08/19 08:18:51 tholo Exp $"
+#endif /* LIBC_SCCS */
+
/* int memcmp(s1, s2, n) */
#include "DEFS.h"
diff --git a/lib/libc/arch/vax/string/memcpy.S b/lib/libc/arch/vax/string/memcpy.S
index 54f7ce842c4..458e152b89d 100644
--- a/lib/libc/arch/vax/string/memcpy.S
+++ b/lib/libc/arch/vax/string/memcpy.S
@@ -1,4 +1,3 @@
-/* $NetBSD: memcpy.S,v 1.1 1996/05/19 15:57:45 ragge Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,9 +31,10 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
- .asciz "@(#)memcpy.s 8.1 (Berkeley) 6/4/93"
-#endif /* LIBC_SCCS and not lint */
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: memcpy.S,v 1.2 1996/08/19 08:18:52 tholo Exp $"
+#endif /* LIBC_SCCS */
/*
* void *memcpy(dst, src, size)
diff --git a/lib/libc/arch/vax/string/memmove.S b/lib/libc/arch/vax/string/memmove.S
index c3cd5d5101a..f39e1d6d4ed 100644
--- a/lib/libc/arch/vax/string/memmove.S
+++ b/lib/libc/arch/vax/string/memmove.S
@@ -1,4 +1,3 @@
-/* $NetBSD: memmove.S,v 1.1 1996/05/19 15:57:47 ragge Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,9 +31,10 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
- .asciz "@(#)memmove.s 8.1 (Berkeley) 6/4/93"
-#endif /* LIBC_SCCS and not lint */
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: memmove.S,v 1.2 1996/08/19 08:18:52 tholo Exp $"
+#endif /* LIBC_SCCS */
/*
* void *memmove(dst, src, size)
diff --git a/lib/libc/arch/vax/string/memset.S b/lib/libc/arch/vax/string/memset.S
index aad5b3d64df..a221878c141 100644
--- a/lib/libc/arch/vax/string/memset.S
+++ b/lib/libc/arch/vax/string/memset.S
@@ -1,4 +1,3 @@
-/* $NetBSD: memset.S,v 1.1 1996/05/19 15:57:49 ragge Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -32,9 +31,10 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
- .asciz "@(#)memset.s 8.1 (Berkeley) 6/4/93"
-#endif /* LIBC_SCCS and not lint */
+#if defined(LIBC_SCCS)
+ .text
+ .asciz "$OpenBSD: memset.S,v 1.2 1996/08/19 08:18:53 tholo Exp $"
+#endif /* LIBC_SCCS */
/* void *memset(base, c, length) */