summaryrefslogtreecommitdiff
path: root/lib/libc/mips/string
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/mips/string')
-rw-r--r--lib/libc/mips/string/Makefile.inc2
-rw-r--r--lib/libc/mips/string/bcmp.S2
-rw-r--r--lib/libc/mips/string/bcopy.S2
-rw-r--r--lib/libc/mips/string/bzero.S2
-rw-r--r--lib/libc/mips/string/ffs.S2
-rw-r--r--lib/libc/mips/string/index.S2
-rw-r--r--lib/libc/mips/string/memcpy.S2
-rw-r--r--lib/libc/mips/string/memmove.S2
-rw-r--r--lib/libc/mips/string/rindex.S2
-rw-r--r--lib/libc/mips/string/strcmp.S2
-rw-r--r--lib/libc/mips/string/strlen.S2
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..a98aec896440 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.8.1 2012/03/03 06:15:13 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..d98d6fd69488 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.4.1 2012/03/03 06:15:13 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..8e93b850636d 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.4.1 2012/03/03 06:15:13 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..c29d34f03710 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.4.1 2012/03/03 06:15:13 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..b9a9cc32c231 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.4.1 2012/03/03 06:15:13 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..cf120e1c8451 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.4.1 2012/03/03 06:15:13 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..1b09677c7b41 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.8.1 2012/03/03 06:15:13 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..577121a5bc5c 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.8.1 2012/03/03 06:15:13 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..61560e6d7dfc 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.4.1 2012/03/03 06:15:13 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..84bd6adf4098 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.4.1 2012/03/03 06:15:13 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..cfa2372d363e 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.4.1 2012/03/03 06:15:13 kensmith Exp $");
#if defined(LIBC_SCCS) && !defined(lint)
ASMSTR("from: @(#)strlen.s 8.1 (Berkeley) 6/4/93")