summaryrefslogtreecommitdiffstats
path: root/lib/libc/i386/string
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-03-23 02:44:19 +0000
committerobrien <obrien@FreeBSD.org>2002-03-23 02:44:19 +0000
commite6788c9a6d54095e6a125b88d15523e5b1d5a412 (patch)
treed03bd1b265e1f88a24488c08b42c94677d9b3b85 /lib/libc/i386/string
parent2fdb91d36dafb60196705e412e96c95354ef61bc (diff)
downloadFreeBSD-src-e6788c9a6d54095e6a125b88d15523e5b1d5a412.zip
FreeBSD-src-e6788c9a6d54095e6a125b88d15523e5b1d5a412.tar.gz
Standardize on our SCM ID style.
Diffstat (limited to 'lib/libc/i386/string')
-rw-r--r--lib/libc/i386/string/bcmp.S6
-rw-r--r--lib/libc/i386/string/bcopy.S3
-rw-r--r--lib/libc/i386/string/bzero.S6
-rw-r--r--lib/libc/i386/string/ffs.S6
-rw-r--r--lib/libc/i386/string/index.S6
-rw-r--r--lib/libc/i386/string/memchr.S6
-rw-r--r--lib/libc/i386/string/memcmp.S6
-rw-r--r--lib/libc/i386/string/memcpy.S3
-rw-r--r--lib/libc/i386/string/memmove.S3
-rw-r--r--lib/libc/i386/string/memset.S6
-rw-r--r--lib/libc/i386/string/rindex.S6
-rw-r--r--lib/libc/i386/string/strcat.S6
-rw-r--r--lib/libc/i386/string/strchr.S6
-rw-r--r--lib/libc/i386/string/strcmp.S6
-rw-r--r--lib/libc/i386/string/strcpy.S6
-rw-r--r--lib/libc/i386/string/strlen.S6
-rw-r--r--lib/libc/i386/string/strncmp.S6
-rw-r--r--lib/libc/i386/string/strrchr.S6
-rw-r--r--lib/libc/i386/string/swab.S6
19 files changed, 25 insertions, 80 deletions
diff --git a/lib/libc/i386/string/bcmp.S b/lib/libc/i386/string/bcmp.S
index 1334ff1..60ece4f 100644
--- a/lib/libc/i386/string/bcmp.S
+++ b/lib/libc/i386/string/bcmp.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* bcmp (void *b1, void *b2, size_t len)
diff --git a/lib/libc/i386/string/bcopy.S b/lib/libc/i386/string/bcopy.S
index d2a571e..aaa701b 100644
--- a/lib/libc/i386/string/bcopy.S
+++ b/lib/libc/i386/string/bcopy.S
@@ -34,8 +34,11 @@
*/
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+#if 0
RCSID("$NetBSD: bcopy.S,v 1.6 1996/11/12 00:50:06 jtc Exp $")
+#endif
/*
* (ov)bcopy (src,dst,cnt)
diff --git a/lib/libc/i386/string/bzero.S b/lib/libc/i386/string/bzero.S
index 823ed1a..da55365 100644
--- a/lib/libc/i386/string/bzero.S
+++ b/lib/libc/i386/string/bzero.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* bzero (void *b, size_t len)
diff --git a/lib/libc/i386/string/ffs.S b/lib/libc/i386/string/ffs.S
index e2e6cba..7f3719c 100644
--- a/lib/libc/i386/string/ffs.S
+++ b/lib/libc/i386/string/ffs.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* ffs(value)
diff --git a/lib/libc/i386/string/index.S b/lib/libc/i386/string/index.S
index c36e55a..51e37b0 100644
--- a/lib/libc/i386/string/index.S
+++ b/lib/libc/i386/string/index.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* index(s, c)
diff --git a/lib/libc/i386/string/memchr.S b/lib/libc/i386/string/memchr.S
index bbd03d1e..8f7e8b5 100644
--- a/lib/libc/i386/string/memchr.S
+++ b/lib/libc/i386/string/memchr.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* memchr (b, c, len)
diff --git a/lib/libc/i386/string/memcmp.S b/lib/libc/i386/string/memcmp.S
index 3a7d0f8..8aa2f4e 100644
--- a/lib/libc/i386/string/memcmp.S
+++ b/lib/libc/i386/string/memcmp.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* memcmp (void *b1, void *b2, size_t len)
diff --git a/lib/libc/i386/string/memcpy.S b/lib/libc/i386/string/memcpy.S
index 1617c71..f85a1a5 100644
--- a/lib/libc/i386/string/memcpy.S
+++ b/lib/libc/i386/string/memcpy.S
@@ -1,2 +1,5 @@
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#define MEMCOPY
#include "bcopy.S"
diff --git a/lib/libc/i386/string/memmove.S b/lib/libc/i386/string/memmove.S
index f5a94ed..02330c4 100644
--- a/lib/libc/i386/string/memmove.S
+++ b/lib/libc/i386/string/memmove.S
@@ -1,2 +1,5 @@
+#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
+
#define MEMMOVE
#include "bcopy.S"
diff --git a/lib/libc/i386/string/memset.S b/lib/libc/i386/string/memset.S
index 2dcba43..52f0485 100644
--- a/lib/libc/i386/string/memset.S
+++ b/lib/libc/i386/string/memset.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* memset(void *b, int c, size_t len)
diff --git a/lib/libc/i386/string/rindex.S b/lib/libc/i386/string/rindex.S
index c364ee2..651a90b 100644
--- a/lib/libc/i386/string/rindex.S
+++ b/lib/libc/i386/string/rindex.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* rindex(s, c)
diff --git a/lib/libc/i386/string/strcat.S b/lib/libc/i386/string/strcat.S
index 9d2c659..5155147 100644
--- a/lib/libc/i386/string/strcat.S
+++ b/lib/libc/i386/string/strcat.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* strcat(s, append)
diff --git a/lib/libc/i386/string/strchr.S b/lib/libc/i386/string/strchr.S
index 682866b..14ef17f 100644
--- a/lib/libc/i386/string/strchr.S
+++ b/lib/libc/i386/string/strchr.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* strchr(s, c)
diff --git a/lib/libc/i386/string/strcmp.S b/lib/libc/i386/string/strcmp.S
index 045e95a..0860fc9 100644
--- a/lib/libc/i386/string/strcmp.S
+++ b/lib/libc/i386/string/strcmp.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* strcmp(s1, s2)
diff --git a/lib/libc/i386/string/strcpy.S b/lib/libc/i386/string/strcpy.S
index b3bccc1..4d03aa2 100644
--- a/lib/libc/i386/string/strcpy.S
+++ b/lib/libc/i386/string/strcpy.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* strcpy (dst, src)
diff --git a/lib/libc/i386/string/strlen.S b/lib/libc/i386/string/strlen.S
index 44fbdad..2078013 100644
--- a/lib/libc/i386/string/strlen.S
+++ b/lib/libc/i386/string/strlen.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* strlen (s)
diff --git a/lib/libc/i386/string/strncmp.S b/lib/libc/i386/string/strncmp.S
index da075b9..e5953c5 100644
--- a/lib/libc/i386/string/strncmp.S
+++ b/lib/libc/i386/string/strncmp.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* strncmp(s1, s2, n)
diff --git a/lib/libc/i386/string/strrchr.S b/lib/libc/i386/string/strrchr.S
index bef84d0..27cb894 100644
--- a/lib/libc/i386/string/strrchr.S
+++ b/lib/libc/i386/string/strrchr.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif /* LIBC_RCS and not lint */
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* strrchr(s, c)
diff --git a/lib/libc/i386/string/swab.S b/lib/libc/i386/string/swab.S
index ce2aff1..11967f6 100644
--- a/lib/libc/i386/string/swab.S
+++ b/lib/libc/i386/string/swab.S
@@ -28,12 +28,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#if defined(LIBC_RCS) && !defined(lint)
- .text
- .asciz "$FreeBSD$"
-#endif
-
#include <machine/asm.h>
+__FBSDID("$FreeBSD$");
/*
* void
OpenPOWER on IntegriCloud