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 | b2b6eb638eadcdd5ea091d74f65b1c0a97e0df0a (patch) | |
tree | 256b8a5843ac03a404289c226a111854edc61cad /components/ip.c | |
parent | 2bd581a47b8e355a398b87bb82fdcff547b8073a (diff) |
ip: Sort headers alphabetically
Diffstat (limited to 'components/ip.c')
-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" |