diff options
author | drkhsh <me@drkhsh.at> | 2022-10-27 23:18:30 +0200 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-10-28 01:03:20 +0200 |
commit | 0696635bcbad06770cce7d5a4c9e8e4d76868307 (patch) | |
tree | e08c2b8ded6542dbc9bde533566858db000e3788 /components/cpu.c | |
parent | 826a5dc86202624b00ad2a51d781758a7f7ca1fa (diff) | |
download | slstatus-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/cpu.c')
-rw-r--r-- | components/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/cpu.c b/components/cpu.c index 28e9a45..20354c0 100644 --- a/components/cpu.c +++ b/components/cpu.c @@ -3,8 +3,8 @@ #include <stdio.h> #include <string.h> -#include "../util.h" #include "../slstatus.h" +#include "../util.h" #if defined(__linux__) #define CPU_FREQ "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq" @@ -110,9 +110,9 @@ b[CP_INTR])) / sum); } #elif defined(__FreeBSD__) + #include <devstat.h> #include <sys/param.h> #include <sys/sysctl.h> - #include <devstat.h> const char * cpu_freq(const char *unused) |