library: Update uptime calls to standard format

Changed all the uptime related functions to use the
standard naming procps_uptime_*
This commit is contained in:
Craig Small
2015-06-29 22:09:59 +10:00
parent 56399212c8
commit 639daf5468
8 changed files with 130 additions and 120 deletions

View File

@ -29,9 +29,9 @@
__BEGIN_DECLS
int uptime(double *uptime_secs, double *idle_secs);
char *sprint_uptime(void);
char *sprint_uptime_short(void);
int procps_uptime(double *uptime_secs, double *idle_secs);
char *procps_uptime_sprint(void);
char *procps_uptime_sprint_short(void);
__END_DECLS