[hackers] [slstatus] uptime: Simplifiy and clean up || Aaron Marcher

From: <git_AT_suckless.org>
Date: Wed, 2 May 2018 08:49:37 +0200 (CEST)

commit e43c3a16f06ccd0c35814e8b47a6f30e81f9c981
Author: Aaron Marcher <me_AT_drkhsh.at>
AuthorDate: Wed May 2 08:41:06 2018 +0200
Commit: Aaron Marcher <me_AT_drkhsh.at>
CommitDate: Wed May 2 08:41:06 2018 +0200

    uptime: Simplifiy and clean up

diff --git a/components/uptime.c b/components/uptime.c
index 25f904c..19908b9 100644
--- a/components/uptime.c
+++ b/components/uptime.c
_AT_@ -1,41 +1,43 @@
 /* See LICENSE file for copyright and license details. */
-#include <errno.h>
 #include <stdio.h>
-#include <string.h>
 
 #include "../util.h"
 
+const char *
+format(int uptime)
+{
+ int h, m;
+
+ h = uptime / 3600;
+ m = (uptime - h * 3600) / 60;
+
+ return bprintf("%dh %dm", h, m);
+}
+
 #if defined(__linux__)
         #include <sys/sysinfo.h>
 
         const char *
         uptime(void)
         {
- int h;
- int m;
- int uptime = 0;
+ int uptime;
                 struct sysinfo info;
 
                 sysinfo(&info);
                 uptime = info.uptime;
 
- h = uptime / 3600;
- m = (uptime - h * 3600) / 60;
-
- return bprintf("%dh %dm", h, m);
+ return format(uptime);
         }
 #elif defined(__OpenBSD__)
+ #include <errno.h>
+ #include <string.h>
         #include <sys/sysctl.h>
         #include <sys/time.h>
 
         const char *
         uptime(void)
         {
- int h;
- int m;
- int uptime = 0;
-
- int mib[2];
+ int mib[2], uptime;
                 size_t size;
                 time_t now;
                 struct timeval boottime;
_AT_@ -47,16 +49,13 @@
 
                 size = sizeof(boottime);
 
- if (sysctl(mib, 2, &boottime, &size, NULL, 0) != -1)
- uptime = now - boottime.tv_sec;
- else {
+ if (sysctl(mib, 2, &boottime, &size, NULL, 0) == -1)
                         fprintf(stderr, "sysctl 'KERN_BOOTTIME': %s\n", strerror(errno));
                         return NULL;
                 }
 
- h = uptime / 3600;
- m = (uptime - h * 3600) / 60;
+ uptime = now - boottime.tv_sec;
 
- return bprintf("%dh %dm", h, m);
+ return format(uptime);
         }
 #endif
Received on Wed May 02 2018 - 08:49:37 CEST

This archive was generated by hypermail 2.3.0 : Wed May 02 2018 - 09:00:47 CEST