diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-29 17:16:39 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-29 17:16:39 +0000 |
commit | 266bc17690cd8e98bf30514a19f95891b6ccd1d3 (patch) | |
tree | 75afe0e05044880298a5ad38a04ad3213f0d2fd3 /procps/ps.c | |
parent | b1726785f947c35c11d2148196b8fa8b30445798 (diff) | |
download | busybox-w32-266bc17690cd8e98bf30514a19f95891b6ccd1d3.tar.gz busybox-w32-266bc17690cd8e98bf30514a19f95891b6ccd1d3.tar.bz2 busybox-w32-266bc17690cd8e98bf30514a19f95891b6ccd1d3.zip |
top: add support for -b, -n <iterations>
Diffstat (limited to 'procps/ps.c')
-rw-r--r-- | procps/ps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/ps.c b/procps/ps.c index d88fe4af1..95502b284 100644 --- a/procps/ps.c +++ b/procps/ps.c | |||
@@ -16,14 +16,14 @@ int ps_main(int argc, char **argv) | |||
16 | 16 | ||
17 | #if ENABLE_SELINUX | 17 | #if ENABLE_SELINUX |
18 | int use_selinux = 0; | 18 | int use_selinux = 0; |
19 | security_context_t sid=NULL; | 19 | security_context_t sid = NULL; |
20 | #endif | 20 | #endif |
21 | 21 | ||
22 | #if ENABLE_FEATURE_PS_WIDE | 22 | #if ENABLE_FEATURE_PS_WIDE |
23 | int terminal_width; | 23 | int terminal_width; |
24 | int w_count = 0; | 24 | int w_count = 0; |
25 | 25 | ||
26 | bb_opt_complementally="-:ww"; | 26 | bb_opt_complementally = "-:ww"; |
27 | #else | 27 | #else |
28 | # define terminal_width 79 | 28 | # define terminal_width 79 |
29 | #endif | 29 | #endif |