diff options
author | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2015-11-30 22:02:10 +0000 |
---|---|---|
committer | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2015-11-30 22:02:10 +0000 |
commit | 9416f136e6a27546a03414e7fb8ae685e3f9948a (patch) | |
tree | 424188588095c092d28b516e550a43cd05d3c8ae /usr.sbin | |
parent | 1cbabc40e4f4f528eecaac0ba4052ffb765e8969 (diff) |
Sort includes.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/route6d/route6d.c | 40 |
1 files changed, 19 insertions, 21 deletions
diff --git a/usr.sbin/route6d/route6d.c b/usr.sbin/route6d/route6d.c index 4f74b5f3fa3..0d2944998de 100644 --- a/usr.sbin/route6d/route6d.c +++ b/usr.sbin/route6d/route6d.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route6d.c,v 1.82 2015/11/30 21:58:23 jca Exp $ */ +/* $OpenBSD: route6d.c,v 1.83 2015/11/30 22:02:09 jca Exp $ */ /* $KAME: route6d.c,v 1.111 2006/10/25 06:38:13 jinmei Exp $ */ /* @@ -30,37 +30,35 @@ * SUCH DAMAGE. */ -#include <stdio.h> - -#include <time.h> -#include <unistd.h> -#include <stdlib.h> -#include <string.h> -#include <signal.h> -#include <stdarg.h> -#include <syslog.h> -#include <stddef.h> -#include <stdint.h> -#include <errno.h> -#include <util.h> -#include <poll.h> - #include <sys/types.h> -#include <sys/file.h> -#include <sys/socket.h> #include <sys/ioctl.h> +#include <sys/socket.h> #include <sys/sysctl.h> #include <sys/uio.h> + #include <net/if.h> #include <net/route.h> #include <netinet/in.h> -#include <netinet6/in6_var.h> #include <netinet/ip6.h> #include <netinet/udp.h> -#include <netdb.h> -#include <ifaddrs.h> +#include <netinet6/in6_var.h> #include <arpa/inet.h> +#include <errno.h> +#include <ifaddrs.h> +#include <netdb.h> +#include <poll.h> +#include <signal.h> +#include <stdarg.h> +#include <stddef.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <syslog.h> +#include <time.h> +#include <unistd.h> +#include <util.h> #include "route6d.h" |