summaryrefslogtreecommitdiff
path: root/miscutils/microcom.c
diff options
context:
space:
mode:
authorDenys Vlasenko2021-06-13 01:08:48 +0200
committerDenys Vlasenko2021-06-13 01:08:48 +0200
commit6b6826f0b87b13c5e83786f045b90d703507464e (patch)
treedc40238c9843b020fddfa7de83e25892b166dbe4 /miscutils/microcom.c
parentaece2c5f0fef9088b615016f3177b1abd3a373bb (diff)
downloadbusybox-6b6826f0b87b13c5e83786f045b90d703507464e.zip
busybox-6b6826f0b87b13c5e83786f045b90d703507464e.tar.gz
*: --help tweaks
function old new delta .rodata 103190 103189 -1 packed_usage 33590 33566 -24 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-25) Total: -25 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/microcom.c')
-rw-r--r--miscutils/microcom.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/miscutils/microcom.c b/miscutils/microcom.c
index 399d4cf..97b4634 100644
--- a/miscutils/microcom.c
+++ b/miscutils/microcom.c
@@ -18,14 +18,14 @@
//kbuild:lib-$(CONFIG_MICROCOM) += microcom.o
//usage:#define microcom_trivial_usage
-//usage: "[-d DELAY] [-t TIMEOUT] [-s SPEED] [-X] TTY"
+//usage: "[-d DELAY_MS] [-t TIMEOUT_MS ] [-s SPEED] [-X] TTY"
//usage:#define microcom_full_usage "\n\n"
-//usage: "Copy bytes for stdin to TTY and from TTY to stdout\n"
-//usage: "\n -d Wait up to DELAY ms for TTY output before sending every"
-//usage: "\n next byte to it"
-//usage: "\n -t Exit if both stdin and TTY are silent for TIMEOUT ms"
-//usage: "\n -s Set serial line to SPEED"
-//usage: "\n -X Disable special meaning of NUL and Ctrl-X from stdin"
+//usage: "Copy bytes from stdin to TTY and from TTY to stdout\n"
+//usage: "\n -d DELAY Wait up to DELAY ms for TTY output before sending"
+//usage: "\n every next byte to it"
+//usage: "\n -t TIMEOUT Exit if both stdin and TTY are silent for TIMEOUT ms"
+//usage: "\n -s SPEED Set serial line to SPEED"
+//usage: "\n -X Disable special meaning of NUL and Ctrl-X from stdin"
#include "libbb.h"
#include "common_bufsiz.h"