diff options
author | peter <peter@FreeBSD.org> | 1999-08-28 00:22:10 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-08-28 00:22:10 +0000 |
commit | 76f0c923fe4b2a1616453876611dc76b4f6b5355 (patch) | |
tree | 11c3e263d5f0f3acaf3b23fd63177baa9d93b750 /lib/libc/i386/net | |
parent | c148814ac642685a549ea821e649cd359879c935 (diff) | |
download | FreeBSD-src-76f0c923fe4b2a1616453876611dc76b4f6b5355.zip FreeBSD-src-76f0c923fe4b2a1616453876611dc76b4f6b5355.tar.gz |
$Id$ -> $FreeBSD$
Diffstat (limited to 'lib/libc/i386/net')
-rw-r--r-- | lib/libc/i386/net/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/i386/net/htonl.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/net/htons.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/net/ntohl.S | 4 | ||||
-rw-r--r-- | lib/libc/i386/net/ntohs.S | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/lib/libc/i386/net/Makefile.inc b/lib/libc/i386/net/Makefile.inc index dff7fd1..96e559b 100644 --- a/lib/libc/i386/net/Makefile.inc +++ b/lib/libc/i386/net/Makefile.inc @@ -1,4 +1,4 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 -# $Id$ +# $FreeBSD$ SRCS+= htonl.S htons.S ntohl.S ntohs.S diff --git a/lib/libc/i386/net/htonl.S b/lib/libc/i386/net/htonl.S index 095c40a..48f1ca8 100644 --- a/lib/libc/i386/net/htonl.S +++ b/lib/libc/i386/net/htonl.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id$" + .asciz "$FreeBSD$" #endif /* LIBC_RCS and not lint */ /* netorder = htonl(hostorder) */ diff --git a/lib/libc/i386/net/htons.S b/lib/libc/i386/net/htons.S index 238dfc2..68f2b5a 100644 --- a/lib/libc/i386/net/htons.S +++ b/lib/libc/i386/net/htons.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id$" + .asciz "$FreeBSD$" #endif /* LIBC_RCS and not lint */ /* netorder = htons(hostorder) */ diff --git a/lib/libc/i386/net/ntohl.S b/lib/libc/i386/net/ntohl.S index 5af5008..7be9dee 100644 --- a/lib/libc/i386/net/ntohl.S +++ b/lib/libc/i386/net/ntohl.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id$" + .asciz "$FreeBSD$" #endif /* LIBC_RCS and not lint */ /* hostorder = ntohl(netorder) */ diff --git a/lib/libc/i386/net/ntohs.S b/lib/libc/i386/net/ntohs.S index 4bed4a2..0f1d228 100644 --- a/lib/libc/i386/net/ntohs.S +++ b/lib/libc/i386/net/ntohs.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id$" + .asciz "$FreeBSD$" #endif /* LIBC_RCS and not lint */ /* hostorder = ntohs(netorder) */ |