diff options
author | 1996-08-19 08:10:10 +0000 | |
---|---|---|
committer | 1996-08-19 08:10:10 +0000 | |
commit | e9b2b68ca3a6cce2632b4a73cc801bbb6f19c001 (patch) | |
tree | ae28f47ec89be7d99e138e5b76dfb015e512c6b2 /lib/libc/arch/m68k/string/memset.S | |
parent | Oops major {fd = 2} was doubly specified (diff) | |
download | wireguard-openbsd-e9b2b68ca3a6cce2632b4a73cc801bbb6f19c001.tar.xz wireguard-openbsd-e9b2b68ca3a6cce2632b4a73cc801bbb6f19c001.zip |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/arch/m68k/string/memset.S')
-rw-r--r-- | lib/libc/arch/m68k/string/memset.S | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/lib/libc/arch/m68k/string/memset.S b/lib/libc/arch/m68k/string/memset.S index 78d484ed9b3..4da280e5ca1 100644 --- a/lib/libc/arch/m68k/string/memset.S +++ b/lib/libc/arch/m68k/string/memset.S @@ -1,5 +1,3 @@ -/* $NetBSD: memset.S,v 1.6 1995/11/28 23:40:56 thorpej Exp $ */ - /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -39,13 +37,10 @@ #include "DEFS.h" -#if defined(LIBC_SCCS) && !defined(lint) -#if 0 - RCSID("from: @(#)bzero.s 5.1 (Berkeley) 5/12/90") -#else - RCSID("$NetBSD: memset.S,v 1.6 1995/11/28 23:40:56 thorpej Exp $") -#endif -#endif /* LIBC_SCCS and not lint */ +#if defined(LIBC_SCCS) + .text + .asciz "$OpenBSD: memset.S,v 1.3 1996/08/19 08:15:17 tholo Exp $" +#endif /* LIBC_SCCS */ /* * This is probably not the best we can do, but it is still much |