diff options
author | 1995-12-14 05:37:15 +0000 | |
---|---|---|
committer | 1995-12-14 05:37:15 +0000 | |
commit | 39a9fd12d718eeb4a1e7e26feafee4141c0b7f30 (patch) | |
tree | 4070b2e506eece38502c87c42dad081613919690 /lib/libc/arch/m68k/string/memcmp.S | |
parent | update from netbsd (verbatim) (diff) | |
download | wireguard-openbsd-39a9fd12d718eeb4a1e7e26feafee4141c0b7f30.tar.xz wireguard-openbsd-39a9fd12d718eeb4a1e7e26feafee4141c0b7f30.zip |
update from netbsd
Diffstat (limited to 'lib/libc/arch/m68k/string/memcmp.S')
-rw-r--r-- | lib/libc/arch/m68k/string/memcmp.S | 14 |
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 292f5063bb0..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.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. |