diff options
Diffstat (limited to 'lib/libc/arch/m68k/string/strcmp.S')
-rw-r--r-- | lib/libc/arch/m68k/string/strcmp.S | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/libc/arch/m68k/string/strcmp.S b/lib/libc/arch/m68k/string/strcmp.S index 92dfd30c57b..71f27188332 100644 --- a/lib/libc/arch/m68k/string/strcmp.S +++ b/lib/libc/arch/m68k/string/strcmp.S @@ -1,3 +1,5 @@ +/* $NetBSD: strcmp.S,v 1.5 1995/11/28 23:41:00 thorpej Exp $ */ + /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -35,14 +37,16 @@ * SUCH DAMAGE. */ +#include "DEFS.h" + #if defined(LIBC_SCCS) && !defined(lint) - .text - /*.asciz "from: @(#)strcmp.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$Id: strcmp.S,v 1.1 1995/10/18 08:41:31 deraadt Exp $" +#if 0 + RCSID("from: @(#)strcmp.s 5.1 (Berkeley) 5/12/90") +#else + RCSID("$NetBSD: strcmp.S,v 1.5 1995/11/28 23:41:00 thorpej Exp $") +#endif #endif /* LIBC_SCCS and not lint */ -#include "DEFS.h" - /* * NOTE: this guy returns result compatible with the VAX assembly version. * The C version on the portable gen directory returns different results |