diff options
author | Denys Vlasenko | 2011-06-05 03:58:28 +0200 |
---|---|---|
committer | Denys Vlasenko | 2011-06-05 03:58:28 +0200 |
commit | 66426760beef7e87c4735f433d123daf911b5b4a (patch) | |
tree | 7aa341ba4d1b01b69feeb878d1b78f974207abb0 /procps/pmap.c | |
parent | 9f7780250ce4bbee9c0a8f1044875e303479e196 (diff) | |
download | busybox-66426760beef7e87c4735f433d123daf911b5b4a.zip busybox-66426760beef7e87c4735f433d123daf911b5b4a.tar.gz |
*: 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.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/procps/pmap.c b/procps/pmap.c index 7f7f391..fd995a5 100644 --- a/procps/pmap.c +++ b/procps/pmap.c @@ -8,22 +8,22 @@ * for details. */ -//applet:IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP)) -//kbuild:lib-$(CONFIG_PMAP) += pmap.o - //config:config PMAP //config: bool "pmap" //config: default y //config: help //config: Display processes' memory mappings. +//applet:IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP)) +//kbuild:lib-$(CONFIG_PMAP) += pmap.o + //usage:#define pmap_trivial_usage -//usage: "[-x][-q] PID" +//usage: "[-xq] PID" //usage:#define pmap_full_usage "\n\n" -//usage: "Display detailed precesses' memory usage\n" -//usage: "\nOptions:" -//usage: "\n -x show details" -//usage: "\n -q quiet" +//usage: "Display detailed process memory usage" +//usage: "\n" +//usage: "\n -x Show details" +//usage: "\n -q Quiet" #include "libbb.h" |