ip: Sort headers alphabetically
Aaron Marcher me@drkhsh.at
Wed, 02 May 2018 08:21:32 +0200
1 files changed,
4 insertions(+),
5 deletions(-)
jump to
M
components/ip.c
→
components/ip.c
@@ -1,14 +1,13 @@
/* See LICENSE file for copyright and license details. */ -#if defined(__OpenBSD__) -#include <sys/types.h> -#include <sys/socket.h> -#endif - #include <errno.h> #include <ifaddrs.h> #include <netdb.h> #include <stdio.h> #include <string.h> +#if defined(__OpenBSD__) +#include <sys/types.h> +#include <sys/socket.h> +#endif #include "../util.h"