format_interval_wide

This commit is contained in:
albert
2002-10-15 01:43:21 +00:00
parent 1e1645c4d4
commit 33023bbf34
3 changed files with 50 additions and 4 deletions

View File

@@ -12,9 +12,9 @@
#include "version.h"
#ifdef MINORVERSION
char procps_version[] = "procps version " VERSION "." SUBVERSION "." MINORVERSION;
const char procps_version[] = "procps version " VERSION "." SUBVERSION "." MINORVERSION;
#else
char procps_version[] = "procps version " VERSION ;
const char procps_version[] = "procps version " VERSION "." SUBVERSION;
#endif
void display_version(void) {

View File

@@ -9,7 +9,7 @@
*/
extern void display_version(void); /* display suite version */
extern char procps_version[]; /* global buf for suite version */
extern const char procps_version[]; /* global buf for suite version */
extern int linux_version_code; /* runtime version of LINUX_VERSION_CODE
in /usr/include/linux/version.h */