diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-19 08:35:14 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-08-19 08:35:14 +0000 |
commit | d7615c200c61c89d6c4f97de1e3abf99bb759de9 (patch) | |
tree | 35d8d19aca072dba63d7062d615a555693a9142a /lib/libc/arch/mips/net | |
parent | 796010265f845625013cfa4bb2f73a26d43f30d2 (diff) |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/arch/mips/net')
-rw-r--r-- | lib/libc/arch/mips/net/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/arch/mips/net/htonl.S | 10 | ||||
-rw-r--r-- | lib/libc/arch/mips/net/htons.S | 10 |
3 files changed, 9 insertions, 13 deletions
diff --git a/lib/libc/arch/mips/net/Makefile.inc b/lib/libc/arch/mips/net/Makefile.inc index 6ae539be352..885f4b33d2a 100644 --- a/lib/libc/arch/mips/net/Makefile.inc +++ b/lib/libc/arch/mips/net/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.1 1995/02/25 14:59:01 cgd Exp $ +# $OpenBSD: Makefile.inc,v 1.3 1996/08/19 08:16:08 tholo Exp $ SRCS+= htonl.S htons.S LSRCS+= htonl.c htons.c diff --git a/lib/libc/arch/mips/net/htonl.S b/lib/libc/arch/mips/net/htonl.S index ce35b6c92b3..de2cd785632 100644 --- a/lib/libc/arch/mips/net/htonl.S +++ b/lib/libc/arch/mips/net/htonl.S @@ -1,4 +1,3 @@ -/* $OpenBSD: htonl.S,v 1.3 1996/07/30 20:27:52 pefo Exp $ */ /*- * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. @@ -37,11 +36,10 @@ #include <machine/asm.h> -#if defined(LIBC_SCCS) && !defined(lint) - ASMSTR("from: @(#)htonl.s 8.1 (Berkeley) 6/4/93") - ASMSTR("$Id: htonl.S,v 1.3 1996/07/30 20:27:52 pefo Exp $") -#endif /* LIBC_SCCS and not lint */ - +#if defined(LIBC_SCCS) + .text + .asciz "$OpenBSD: htonl.S,v 1.4 1996/08/19 08:16:09 tholo Exp $" +#endif /* LIBC_SCCS */ /* * netorder = htonl(hostorder) diff --git a/lib/libc/arch/mips/net/htons.S b/lib/libc/arch/mips/net/htons.S index ab3e90f1d0d..0eca643d025 100644 --- a/lib/libc/arch/mips/net/htons.S +++ b/lib/libc/arch/mips/net/htons.S @@ -1,4 +1,3 @@ -/* $OpenBSD: htons.S,v 1.3 1996/07/30 20:27:53 pefo Exp $ */ /*- * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. @@ -37,11 +36,10 @@ #include <machine/asm.h> -#if defined(LIBC_SCCS) && !defined(lint) - ASMSTR("from: @(#)htons.s 8.1 (Berkeley) 6/4/93") - ASMSTR("$Id: htons.S,v 1.3 1996/07/30 20:27:53 pefo Exp $") -#endif /* LIBC_SCCS and not lint */ - +#if defined(LIBC_SCCS) + .text + .asciz "$OpenBSD: htons.S,v 1.4 1996/08/19 08:16:09 tholo Exp $" +#endif /* LIBC_SCCS */ /* * netorder = htons(hostorder) |