diff --git a/procps/top.c b/procps/top.c index e6e4b5c00..fcb570b64 100644 --- a/procps/top.c +++ b/procps/top.c @@ -33,8 +33,6 @@ #include #include #include -/* get page info */ -#include #include "busybox.h" //#define FEATURE_CPU_USAGE_PERCENTAGE /* + 2k */ 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 #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) #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)