diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-05-02 08:21:32 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-02 08:21:32 +0200 |
commit | c139be1a7db320f457c9aac5a6e762f89f2c20a4 (patch) | |
tree | 256b8a5843ac03a404289c226a111854edc61cad | |
parent | 89c4fd88a365f94d91e4c41bb96f6806d2f8d483 (diff) |
ip: Sort headers alphabetically
-rw-r--r-- | components/ip.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/components/ip.c b/components/ip.c index 422b448..b1f8a05 100644 --- a/components/ip.c +++ b/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" |