all repos — slstatus @ b2b6eb638eadcdd5ea091d74f65b1c0a97e0df0a

my build of slstatus (tools.suckless.org/slstatus/)

ip: Sort headers alphabetically
Aaron Marcher me@drkhsh.at
Wed, 02 May 2018 08:21:32 +0200
commit

b2b6eb638eadcdd5ea091d74f65b1c0a97e0df0a

parent

2bd581a47b8e355a398b87bb82fdcff547b8073a

1 files changed, 4 insertions(+), 5 deletions(-)

jump to
M components/ip.ccomponents/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"