summaryrefslogtreecommitdiff
path: root/lib/libc/arch/m68k/string/memcmp.S
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/arch/m68k/string/memcmp.S')
-rw-r--r--lib/libc/arch/m68k/string/memcmp.S14
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/libc/arch/m68k/string/memcmp.S b/lib/libc/arch/m68k/string/memcmp.S
index 578c23308ba..9799eb8604e 100644
--- a/lib/libc/arch/m68k/string/memcmp.S
+++ b/lib/libc/arch/m68k/string/memcmp.S
@@ -1,3 +1,5 @@
+/* $NetBSD: memcmp.S,v 1.7 1995/11/28 23:40:55 thorpej Exp $ */
+
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -35,16 +37,18 @@
* SUCH DAMAGE.
*/
+#include "DEFS.h"
+
#if defined(LIBC_SCCS) && !defined(lint)
- .text
- /*.asciz "from: @(#)bcmp.s 5.1 (Berkeley) 5/12/90"*/
- .asciz "$Id: memcmp.S,v 1.1 1995/10/18 08:41:31 deraadt Exp $"
+#if 0
+ RCSID("from: @(#)bcmp.s 5.1 (Berkeley) 5/12/90")
+#else
+ RCSID("$NetBSD: memcmp.S,v 1.7 1995/11/28 23:40:55 thorpej Exp $")
+#endif
#endif /* LIBC_SCCS and not lint */
/* memcmp(s1, s2, n) */
-#include "DEFS.h"
-
/*
* This is probably not the best we can do, but it is still 2-10 times
* faster than the C version in the portable gen directory.