diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-07-21 01:51:12 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-07-21 01:51:12 +0000 |
commit | aa9ef24e4656ff609846592e4a0986d78591ad4f (patch) | |
tree | 3e0e3b87efa9679d68f3c087efc8d191949505e6 /lib/libc/net | |
parent | 378b6fbd3692c1ba624cff8309b6bdbcd76657a5 (diff) |
Switch from <sys/endian.h> or <machine/endian.h> to the new,
being-standardized <endian.h>
ok deraadt@ millert@ beck@
Diffstat (limited to 'lib/libc/net')
-rw-r--r-- | lib/libc/net/htonl.c | 4 | ||||
-rw-r--r-- | lib/libc/net/htons.c | 4 | ||||
-rw-r--r-- | lib/libc/net/ntohl.c | 4 | ||||
-rw-r--r-- | lib/libc/net/ntohs.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/net/htonl.c b/lib/libc/net/htonl.c index 5ab4189597c..6ee6e7efbf3 100644 --- a/lib/libc/net/htonl.c +++ b/lib/libc/net/htonl.c @@ -1,11 +1,11 @@ -/* $OpenBSD: htonl.c,v 1.6 2005/08/06 20:30:03 espie Exp $ */ +/* $OpenBSD: htonl.c,v 1.7 2014/07/21 01:51:10 guenther Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <sys/types.h> -#include <machine/endian.h> +#include <endian.h> #undef htonl diff --git a/lib/libc/net/htons.c b/lib/libc/net/htons.c index c8b73fdbb77..f48d91ee035 100644 --- a/lib/libc/net/htons.c +++ b/lib/libc/net/htons.c @@ -1,11 +1,11 @@ -/* $OpenBSD: htons.c,v 1.8 2005/08/06 20:30:03 espie Exp $ */ +/* $OpenBSD: htons.c,v 1.9 2014/07/21 01:51:10 guenther Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <sys/types.h> -#include <machine/endian.h> +#include <endian.h> #undef htons diff --git a/lib/libc/net/ntohl.c b/lib/libc/net/ntohl.c index 36414b7a132..0d05bac78a1 100644 --- a/lib/libc/net/ntohl.c +++ b/lib/libc/net/ntohl.c @@ -1,11 +1,11 @@ -/* $OpenBSD: ntohl.c,v 1.6 2005/08/06 20:30:03 espie Exp $ */ +/* $OpenBSD: ntohl.c,v 1.7 2014/07/21 01:51:10 guenther Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <sys/types.h> -#include <machine/endian.h> +#include <endian.h> #undef ntohl diff --git a/lib/libc/net/ntohs.c b/lib/libc/net/ntohs.c index 8f345e84ad7..b5ea361f830 100644 --- a/lib/libc/net/ntohs.c +++ b/lib/libc/net/ntohs.c @@ -1,11 +1,11 @@ -/* $OpenBSD: ntohs.c,v 1.8 2005/08/06 20:30:03 espie Exp $ */ +/* $OpenBSD: ntohs.c,v 1.9 2014/07/21 01:51:10 guenther Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ #include <sys/types.h> -#include <machine/endian.h> +#include <endian.h> #undef ntohs |