aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
Diffstat (limited to 'procps')
-rw-r--r--procps/kill.c4
-rw-r--r--procps/ps.c2
-rw-r--r--procps/uptime.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/procps/kill.c b/procps/kill.c
index 8fa9da77d..19ca187a7 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -30,8 +30,8 @@
30#include <ctype.h> 30#include <ctype.h>
31#include <unistd.h> 31#include <unistd.h>
32 32
33#define KILL 0 33static const int KILL = 0;
34#define KILLALL 1 34static const int KILLALL = 1;
35 35
36struct signal_name { 36struct signal_name {
37 const char *name; 37 const char *name;
diff --git a/procps/ps.c b/procps/ps.c
index ec63bb548..cb4c21e32 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -40,7 +40,7 @@
40#define bb_need_help 40#define bb_need_help
41#include "messages.c" 41#include "messages.c"
42 42
43#define TERMINAL_WIDTH 79 /* not 80 in case terminal has linefold bug */ 43static const int TERMINAL_WIDTH = 79; /* not 80 in case terminal has linefold bug */
44 44
45 45
46 46
diff --git a/procps/uptime.c b/procps/uptime.c
index fb3d347c3..f5e12f1ee 100644
--- a/procps/uptime.c
+++ b/procps/uptime.c
@@ -33,7 +33,7 @@
33#include <time.h> 33#include <time.h>
34#include <errno.h> 34#include <errno.h>
35 35
36#define FSHIFT 16 /* nr of bits of precision */ 36static const int FSHIFT = 16; /* nr of bits of precision */
37#define FIXED_1 (1<<FSHIFT) /* 1.0 as fixed-point */ 37#define FIXED_1 (1<<FSHIFT) /* 1.0 as fixed-point */
38#define LOAD_INT(x) ((x) >> FSHIFT) 38#define LOAD_INT(x) ((x) >> FSHIFT)
39#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100) 39#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)