summaryrefslogtreecommitdiff
path: root/components/netspeeds.c
diff options
context:
space:
mode:
authordrkhsh <me@drkhsh.at>2022-10-27 23:18:30 +0200
committerdrkhsh <me@drkhsh.at>2022-10-28 01:03:20 +0200
commit0696635bcbad06770cce7d5a4c9e8e4d76868307 (patch)
treee08c2b8ded6542dbc9bde533566858db000e3788 /components/netspeeds.c
parent826a5dc86202624b00ad2a51d781758a7f7ca1fa (diff)
downloadslstatus-0696635bcbad06770cce7d5a4c9e8e4d76868307.tar.gz
radical re-formatting 0/3: Alphabetic headers
Except stated otherwise in comment. Fixes coding style. Formatting commits suck, incoherent coding style sucks more. https://suckless.org/coding_style/
Diffstat (limited to 'components/netspeeds.c')
-rw-r--r--components/netspeeds.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/netspeeds.c b/components/netspeeds.c
index 3a1817b..18aa097 100644
--- a/components/netspeeds.c
+++ b/components/netspeeds.c
@@ -1,9 +1,9 @@
/* See LICENSE file for copyright and license details. */
-#include <stdio.h>
#include <limits.h>
+#include <stdio.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(__linux__)
#include <stdint.h>
@@ -57,11 +57,11 @@
1024);
}
#elif defined(__OpenBSD__) | defined(__FreeBSD__)
- #include <string.h>
#include <ifaddrs.h>
+ #include <net/if.h>
+ #include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
- #include <net/if.h>
const char *
netspeed_rx(const char *interface)