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/vax/net | |
parent | 796010265f845625013cfa4bb2f73a26d43f30d2 (diff) |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/arch/vax/net')
-rw-r--r-- | lib/libc/arch/vax/net/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/arch/vax/net/htonl.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/vax/net/htons.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/vax/net/ntohl.S | 8 | ||||
-rw-r--r-- | lib/libc/arch/vax/net/ntohs.S | 8 |
5 files changed, 17 insertions, 17 deletions
diff --git a/lib/libc/arch/vax/net/Makefile.inc b/lib/libc/arch/vax/net/Makefile.inc index 2212f87f2e8..ddba438c7c9 100644 --- a/lib/libc/arch/vax/net/Makefile.inc +++ b/lib/libc/arch/vax/net/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.1 1995/04/17 12:23:49 ragge Exp $ +# $OpenBSD: Makefile.inc,v 1.3 1996/08/19 08:18:36 tholo Exp $ SRCS+= htonl.S htons.S ntohl.S ntohs.S LSRCS+= htonl.c htons.c ntohl.c ntohs.c diff --git a/lib/libc/arch/vax/net/htonl.S b/lib/libc/arch/vax/net/htonl.S index f707e2b40db..92f49ef075f 100644 --- a/lib/libc/arch/vax/net/htonl.S +++ b/lib/libc/arch/vax/net/htonl.S @@ -31,10 +31,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - /* .asciz "@(#)htonl.s 8.1 (Berkeley) 6/4/93" */ - .asciz "$NetBSD: htonl.S,v 1.1 1995/04/17 12:23:50 ragge Exp $" -#endif /* LIBC_SCCS and not lint */ +#if defined(LIBC_SCCS) + .text + .asciz "$OpenBSD: htonl.S,v 1.2 1996/08/19 08:18:38 tholo Exp $" +#endif /* LIBC_SCCS */ /* netorder = htonl(hostorder) */ diff --git a/lib/libc/arch/vax/net/htons.S b/lib/libc/arch/vax/net/htons.S index deab20f1142..2c0fc0d5646 100644 --- a/lib/libc/arch/vax/net/htons.S +++ b/lib/libc/arch/vax/net/htons.S @@ -31,10 +31,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - /* .asciz "@(#)htons.s 8.1 (Berkeley) 6/4/93" */ - .asciz "$NetBSD: htons.S,v 1.1 1995/04/17 12:23:51 ragge Exp $" -#endif /* LIBC_SCCS and not lint */ +#if defined(LIBC_SCCS) + .text + .asciz "$OpenBSD: htons.S,v 1.2 1996/08/19 08:18:39 tholo Exp $" +#endif /* LIBC_SCCS */ /* hostorder = htons(netorder) */ diff --git a/lib/libc/arch/vax/net/ntohl.S b/lib/libc/arch/vax/net/ntohl.S index 5ad5314bf5b..f572830c5c9 100644 --- a/lib/libc/arch/vax/net/ntohl.S +++ b/lib/libc/arch/vax/net/ntohl.S @@ -31,10 +31,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - /* .asciz "@(#)ntohl.s 8.1 (Berkeley) 6/4/93" */ - .asciz "$NetBSD: ntohl.S,v 1.1 1995/04/17 12:23:52 ragge Exp $" -#endif /* LIBC_SCCS and not lint */ +#if defined(LIBC_SCCS) + .text + .asciz "$OpenBSD: ntohl.S,v 1.2 1996/08/19 08:18:40 tholo Exp $" +#endif /* LIBC_SCCS */ /* hostorder = ntohl(netorder) */ diff --git a/lib/libc/arch/vax/net/ntohs.S b/lib/libc/arch/vax/net/ntohs.S index 9a4dc34e743..4a7bd05b116 100644 --- a/lib/libc/arch/vax/net/ntohs.S +++ b/lib/libc/arch/vax/net/ntohs.S @@ -31,10 +31,10 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) - /* .asciz "@(#)ntohs.s 8.1 (Berkeley) 6/4/93" */ - .asciz "$NetBSD: ntohs.S,v 1.1 1995/04/17 12:23:53 ragge Exp $" -#endif /* LIBC_SCCS and not lint */ +#if defined(LIBC_SCCS) + .text + .asciz "$OpenBSD: ntohs.S,v 1.2 1996/08/19 08:18:41 tholo Exp $" +#endif /* LIBC_SCCS */ /* hostorder = ntohs(netorder) */ |