diff options
Diffstat (limited to 'lib/libc/i386/string')
| -rw-r--r-- | lib/libc/i386/string/bcmp.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/bcopy.S | 3 | ||||
| -rw-r--r-- | lib/libc/i386/string/bzero.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/ffs.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/index.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/memchr.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/memcmp.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/memcpy.S | 3 | ||||
| -rw-r--r-- | lib/libc/i386/string/memmove.S | 3 | ||||
| -rw-r--r-- | lib/libc/i386/string/memset.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/rindex.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/strcat.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/strchr.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/strcmp.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/strcpy.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/strlen.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/strncmp.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/strrchr.S | 6 | ||||
| -rw-r--r-- | lib/libc/i386/string/swab.S | 6 |
19 files changed, 25 insertions, 80 deletions
diff --git a/lib/libc/i386/string/bcmp.S b/lib/libc/i386/string/bcmp.S index 1334ff1edd37..60ece4f70b73 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 d2a571ebb4c8..aaa701b82c0c 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 823ed1a69efc..da55365b9dc0 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 e2e6cba1fd86..7f3719c79b02 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 c36e55a0a8e4..51e37b040ee8 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 bbd03d1e40d6..8f7e8b5ea8c9 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 3a7d0f8e290f..8aa2f4ea0413 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 1617c7153aac..f85a1a5b8021 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 f5a94ed4937e..02330c44414b 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 2dcba4302a69..52f0485e6368 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 c364ee2d471e..651a90b869a8 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 9d2c65989bc3..51551475a409 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 682866b7a5b0..14ef17f435a8 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 045e95a865f4..0860fc9313b7 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 b3bccc17abef..4d03aa21e1ed 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 44fbdadcd833..2078013d3965 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 da075b9a762f..e5953c520482 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 bef84d0d7a96..27cb894b19d9 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 ce2aff158586..11967f631217 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 |
