aboutsummaryrefslogtreecommitdiff
path: root/procps/pmap.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-06-05 03:58:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-06-05 03:58:28 +0200
commit66426760beef7e87c4735f433d123daf911b5b4a (patch)
tree7aa341ba4d1b01b69feeb878d1b78f974207abb0 /procps/pmap.c
parent9f7780250ce4bbee9c0a8f1044875e303479e196 (diff)
downloadbusybox-w32-66426760beef7e87c4735f433d123daf911b5b4a.tar.gz
busybox-w32-66426760beef7e87c4735f433d123daf911b5b4a.tar.bz2
busybox-w32-66426760beef7e87c4735f433d123daf911b5b4a.zip
*: remove "Options:" string from help texts
function old new delta packed_usage 28706 28623 -83 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps/pmap.c')
-rw-r--r--procps/pmap.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/procps/pmap.c b/procps/pmap.c
index 7f7f391b9..fd995a54d 100644
--- a/procps/pmap.c
+++ b/procps/pmap.c
@@ -8,22 +8,22 @@
8 * for details. 8 * for details.
9 */ 9 */
10 10
11//applet:IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP))
12//kbuild:lib-$(CONFIG_PMAP) += pmap.o
13
14//config:config PMAP 11//config:config PMAP
15//config: bool "pmap" 12//config: bool "pmap"
16//config: default y 13//config: default y
17//config: help 14//config: help
18//config: Display processes' memory mappings. 15//config: Display processes' memory mappings.
19 16
17//applet:IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP))
18//kbuild:lib-$(CONFIG_PMAP) += pmap.o
19
20//usage:#define pmap_trivial_usage 20//usage:#define pmap_trivial_usage
21//usage: "[-x][-q] PID" 21//usage: "[-xq] PID"
22//usage:#define pmap_full_usage "\n\n" 22//usage:#define pmap_full_usage "\n\n"
23//usage: "Display detailed precesses' memory usage\n" 23//usage: "Display detailed process memory usage"
24//usage: "\nOptions:" 24//usage: "\n"
25//usage: "\n -x show details" 25//usage: "\n -x Show details"
26//usage: "\n -q quiet" 26//usage: "\n -q Quiet"
27 27
28#include "libbb.h" 28#include "libbb.h"
29 29