summaryrefslogtreecommitdiff
path: root/lib/libc/arch/vax/string
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-06-02 20:18:43 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-06-02 20:18:43 +0000
commit6769d7338f7d49ff4b5fe0585cb0fd69a5cdf40e (patch)
treeb47b84907a51426ac9d7d422ed700fe275aad092 /lib/libc/arch/vax/string
parent8a76493afa3cb09c7faafffd10327342fd8af611 (diff)
Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999. Proofed by myself and Theo.
Diffstat (limited to 'lib/libc/arch/vax/string')
-rw-r--r--lib/libc/arch/vax/string/bcmp.S8
-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.S8
-rw-r--r--lib/libc/arch/vax/string/memcmp.S8
-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
9 files changed, 18 insertions, 54 deletions
diff --git a/lib/libc/arch/vax/string/bcmp.S b/lib/libc/arch/vax/string/bcmp.S
index c08ae03b149..a710dc936b6 100644
--- a/lib/libc/arch/vax/string/bcmp.S
+++ b/lib/libc/arch/vax/string/bcmp.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: bcmp.S,v 1.2 1996/08/19 08:18:44 tholo Exp $"
+ .asciz "$OpenBSD: bcmp.S,v 1.3 2003/06/02 20:18:33 millert 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 27886ddf531..006d0bac285 100644
--- a/lib/libc/arch/vax/string/bcopy.S
+++ b/lib/libc/arch/vax/string/bcopy.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: bcopy.S,v 1.3 2001/03/18 07:29:04 bjc Exp $"
+ .asciz "$OpenBSD: bcopy.S,v 1.4 2003/06/02 20:18:33 millert 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 763506798a8..6f7da728a60 100644
--- a/lib/libc/arch/vax/string/bzero.S
+++ b/lib/libc/arch/vax/string/bzero.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: bzero.S,v 1.3 2001/03/18 07:29:04 bjc Exp $"
+ .asciz "$OpenBSD: bzero.S,v 1.4 2003/06/02 20:18:33 millert 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 2bda2a135a9..d7ce9d0eaf0 100644
--- a/lib/libc/arch/vax/string/ffs.S
+++ b/lib/libc/arch/vax/string/ffs.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: ffs.S,v 1.2 1996/08/19 08:18:48 tholo Exp $"
+ .asciz "$OpenBSD: ffs.S,v 1.3 2003/06/02 20:18:33 millert 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 2b8b72aefa1..274a48c2727 100644
--- a/lib/libc/arch/vax/string/index.S
+++ b/lib/libc/arch/vax/string/index.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: index.S,v 1.3 2003/03/10 04:02:49 david Exp $"
+ .asciz "$OpenBSD: index.S,v 1.4 2003/06/02 20:18:33 millert Exp $"
#endif /* LIBC_SCCS */
/*
diff --git a/lib/libc/arch/vax/string/memcmp.S b/lib/libc/arch/vax/string/memcmp.S
index f36c40f19e1..64da76702a9 100644
--- a/lib/libc/arch/vax/string/memcmp.S
+++ b/lib/libc/arch/vax/string/memcmp.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: memcmp.S,v 1.2 1996/08/19 08:18:51 tholo Exp $"
+ .asciz "$OpenBSD: memcmp.S,v 1.3 2003/06/02 20:18:33 millert Exp $"
#endif /* LIBC_SCCS */
/* int memcmp(s1, s2, n) */
diff --git a/lib/libc/arch/vax/string/memcpy.S b/lib/libc/arch/vax/string/memcpy.S
index da2c1a90edf..2943dd1ef5a 100644
--- a/lib/libc/arch/vax/string/memcpy.S
+++ b/lib/libc/arch/vax/string/memcpy.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: memcpy.S,v 1.3 2001/03/18 07:29:04 bjc Exp $"
+ .asciz "$OpenBSD: memcpy.S,v 1.4 2003/06/02 20:18:33 millert Exp $"
#endif /* LIBC_SCCS */
/*
diff --git a/lib/libc/arch/vax/string/memmove.S b/lib/libc/arch/vax/string/memmove.S
index 48253d292aa..aa4593581aa 100644
--- a/lib/libc/arch/vax/string/memmove.S
+++ b/lib/libc/arch/vax/string/memmove.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: memmove.S,v 1.3 2001/03/18 07:29:04 bjc Exp $"
+ .asciz "$OpenBSD: memmove.S,v 1.4 2003/06/02 20:18:33 millert Exp $"
#endif /* LIBC_SCCS */
/*
diff --git a/lib/libc/arch/vax/string/memset.S b/lib/libc/arch/vax/string/memset.S
index b89cec00cb1..47dff9c6f5d 100644
--- a/lib/libc/arch/vax/string/memset.S
+++ b/lib/libc/arch/vax/string/memset.S
@@ -10,11 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -33,7 +29,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: memset.S,v 1.3 2001/03/18 07:29:04 bjc Exp $"
+ .asciz "$OpenBSD: memset.S,v 1.4 2003/06/02 20:18:33 millert Exp $"
#endif /* LIBC_SCCS */
/* void *memset(base, c, length) */