diff options
author | Ken Smith <kensmith@FreeBSD.org> | 2011-02-16 16:18:46 +0000 |
---|---|---|
committer | Ken Smith <kensmith@FreeBSD.org> | 2011-02-16 16:18:46 +0000 |
commit | dec99dafe5763ba1db6950342aa80a634169c083 (patch) | |
tree | 1bd9f5a688ac947b00e690c3c69ccb8df203768d /lib/libc/mips/string | |
parent | 045f17e533c0209bbcddcccbbb0192d61ffd6c9c (diff) |
Copy releng/8.2 to release/8.2.0 for 8.2-RELEASE.release/8.2.0_cvs
Approved by: re (implicit)
This commit was manufactured to restore the state of the 8.2-RELEASE image.
Diffstat (limited to 'lib/libc/mips/string')
-rw-r--r-- | lib/libc/mips/string/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/bcmp.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/bcopy.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/bzero.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/ffs.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/index.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/memcpy.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/memmove.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/rindex.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/strcmp.S | 2 | ||||
-rw-r--r-- | lib/libc/mips/string/strlen.S | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/lib/libc/mips/string/Makefile.inc b/lib/libc/mips/string/Makefile.inc index 48111e5da600..3ddfac668e0a 100644 --- a/lib/libc/mips/string/Makefile.inc +++ b/lib/libc/mips/string/Makefile.inc @@ -1,5 +1,5 @@ # $NetBSD: Makefile.inc,v 1.2 2000/10/10 21:51:54 jeffs Exp $ -# $FreeBSD$ +# $FreeBSD: src/lib/libc/mips/string/Makefile.inc,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $ SRCS+= bcmp.S bcopy.S bzero.S ffs.S index.S memchr.c memcmp.c memset.c \ memcpy.S memmove.S \ diff --git a/lib/libc/mips/string/bcmp.S b/lib/libc/mips/string/bcmp.S index ffcaeeb1a3fa..a74b6033a456 100644 --- a/lib/libc/mips/string/bcmp.S +++ b/lib/libc/mips/string/bcmp.S @@ -33,7 +33,7 @@ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/bcmp.S,v 1.3.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $"); #define _LOCORE /* XXX not really, just assembly-code source */ #include <machine/endian.h> /* LWLO/LWHI, SWLO/SWHI */ diff --git a/lib/libc/mips/string/bcopy.S b/lib/libc/mips/string/bcopy.S index bc227e07d662..d7caee81a21d 100644 --- a/lib/libc/mips/string/bcopy.S +++ b/lib/libc/mips/string/bcopy.S @@ -36,7 +36,7 @@ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/bcopy.S,v 1.3.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $"); #define _LOCORE /* XXX not really, just assembly-code source */ #include <machine/endian.h> diff --git a/lib/libc/mips/string/bzero.S b/lib/libc/mips/string/bzero.S index 66f29ddeeae8..b1fbb71d7477 100644 --- a/lib/libc/mips/string/bzero.S +++ b/lib/libc/mips/string/bzero.S @@ -33,7 +33,7 @@ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/bzero.S,v 1.3.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $"); #if defined(LIBC_SCCS) && !defined(lint) #if 0 diff --git a/lib/libc/mips/string/ffs.S b/lib/libc/mips/string/ffs.S index 17e509c24637..934f7f85fc7b 100644 --- a/lib/libc/mips/string/ffs.S +++ b/lib/libc/mips/string/ffs.S @@ -33,7 +33,7 @@ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/ffs.S,v 1.3.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $"); #if defined(LIBC_SCCS) && !defined(lint) ASMSTR("from: @(#)ffs.s 8.1 (Berkeley) 6/4/93") diff --git a/lib/libc/mips/string/index.S b/lib/libc/mips/string/index.S index d1df5400fc1a..7a0097440e12 100644 --- a/lib/libc/mips/string/index.S +++ b/lib/libc/mips/string/index.S @@ -33,7 +33,7 @@ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/index.S,v 1.3.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $"); #if defined(LIBC_SCCS) && !defined(lint) ASMSTR("from: @(#)index.s 8.1 (Berkeley) 6/4/93") diff --git a/lib/libc/mips/string/memcpy.S b/lib/libc/mips/string/memcpy.S index 8d3c0dbfcf2c..17f863fca767 100644 --- a/lib/libc/mips/string/memcpy.S +++ b/lib/libc/mips/string/memcpy.S @@ -1,7 +1,7 @@ /* $NetBSD: memcpy.S,v 1.1 2005/12/20 19:28:50 christos Exp $ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/memcpy.S,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $"); #define MEMCOPY #include "bcopy.S" diff --git a/lib/libc/mips/string/memmove.S b/lib/libc/mips/string/memmove.S index 29d9e707ee46..aeda228fce35 100644 --- a/lib/libc/mips/string/memmove.S +++ b/lib/libc/mips/string/memmove.S @@ -1,7 +1,7 @@ /* $NetBSD: memmove.S,v 1.1 2005/12/20 19:28:50 christos Exp $ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/memmove.S,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $"); #define MEMMOVE #include "bcopy.S" diff --git a/lib/libc/mips/string/rindex.S b/lib/libc/mips/string/rindex.S index e50379e673a4..faa0984d3dd1 100644 --- a/lib/libc/mips/string/rindex.S +++ b/lib/libc/mips/string/rindex.S @@ -33,7 +33,7 @@ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/rindex.S,v 1.3.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $"); #if defined(LIBC_SCCS) && !defined(lint) ASMSTR("from: @(#)rindex.s 8.1 (Berkeley) 6/4/93") diff --git a/lib/libc/mips/string/strcmp.S b/lib/libc/mips/string/strcmp.S index 8a9905630ce8..785d77364e39 100644 --- a/lib/libc/mips/string/strcmp.S +++ b/lib/libc/mips/string/strcmp.S @@ -33,7 +33,7 @@ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/strcmp.S,v 1.3.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $"); #if defined(LIBC_SCCS) && !defined(lint) ASMSTR("from: @(#)strcmp.s 8.1 (Berkeley) 6/4/93") diff --git a/lib/libc/mips/string/strlen.S b/lib/libc/mips/string/strlen.S index 3b46ccceb54b..d2fb07030069 100644 --- a/lib/libc/mips/string/strlen.S +++ b/lib/libc/mips/string/strlen.S @@ -33,7 +33,7 @@ */ #include <machine/asm.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/lib/libc/mips/string/strlen.S,v 1.3.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $"); #if defined(LIBC_SCCS) && !defined(lint) ASMSTR("from: @(#)strlen.s 8.1 (Berkeley) 6/4/93") |