6820631175
For multiple reasons the program is now split: - Make future porting to OpenBSD easier - Assign header includes to individiual functions - Make future program extensions easier - Recompile only changed parts
18 lines
236 B
C
18 lines
236 B
C
#include <sys/sysinfo.h>
|
|
|
|
#include "util.h"
|
|
|
|
const char *
|
|
uptime(void)
|
|
{
|
|
struct sysinfo info;
|
|
int h = 0;
|
|
int m = 0;
|
|
|
|
sysinfo(&info);
|
|
h = info.uptime / 3600;
|
|
m = (info.uptime - h * 3600 ) / 60;
|
|
|
|
return bprintf("%dh %dm", h, m);
|
|
}
|