aboutsummaryrefslogtreecommitdiff
path: root/procps/uptime.c
diff options
context:
space:
mode:
Diffstat (limited to 'procps/uptime.c')
-rw-r--r--procps/uptime.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/procps/uptime.c b/procps/uptime.c
index 38d58af9c..004288993 100644
--- a/procps/uptime.c
+++ b/procps/uptime.c
@@ -35,7 +35,9 @@
#include <stdlib.h>
#include "busybox.h"
-static const int FSHIFT = 16; /* nr of bits of precision */
+#ifndef FSHIFT
+# define FSHIFT 16 /* nr of bits of precision */
+#endif
#define FIXED_1 (1<<FSHIFT) /* 1.0 as fixed-point */
#define LOAD_INT(x) ((x) >> FSHIFT)
#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)