Xinqi Bao's Git
b45518289be3b56358eeadfd58fc983d96f03679
1 /* See LICENSE file for copyright and license details. */
2 #include <sys/sysinfo.h>
14 h
= info
.uptime
/ 3600;
15 m
= (info
.uptime
- h
* 3600 ) / 60;
17 return bprintf("%dh %dm", h
, m
);