diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-10-22 11:24:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-10-22 11:24:39 +0000 |
commit | a92877403ac522d17602ae24782b44a99a268539 (patch) | |
tree | b0c182fed4a45640f50a725d8e248aad7effb4b8 /include/usage.h | |
parent | a48b0a3af71958c1cea6389893371664a47b1a39 (diff) | |
download | busybox-w32-a92877403ac522d17602ae24782b44a99a268539.tar.gz busybox-w32-a92877403ac522d17602ae24782b44a99a268539.tar.bz2 busybox-w32-a92877403ac522d17602ae24782b44a99a268539.zip |
Goetz Bock writes:
Dear list,
during my quest do pack busybox into an RPM, I've fixed a small bug
(missing \n) in dc's usage. And added two additional operations: mod and
exp/power.
Feel free to drop them.
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 851023ea5..268c23cac 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -280,8 +280,10 @@ | |||
280 | "expression ..." | 280 | "expression ..." |
281 | #define dc_full_usage \ | 281 | #define dc_full_usage \ |
282 | "This is a Tiny RPN calculator that understands the\n" \ | 282 | "This is a Tiny RPN calculator that understands the\n" \ |
283 | "following operations: +, -, /, *, and, or, not, eor.\n" \ | 283 | "following operations: +, add, -, sub, *, mul, /, div, %, mod, "\ |
284 | "i.e., 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16" \ | 284 | "**, exp, and, or, not, eor.\n" \ |
285 | "For example: 'dc 2 2 add' -> 4, and 'dc 8 8 \\* 2 2 + /' -> 16.\n" \ | ||
286 | "\nOptions:\n" \ | ||
285 | "p - Prints the value on the top of the stack, without altering the stack.\n" \ | 287 | "p - Prints the value on the top of the stack, without altering the stack.\n" \ |
286 | "f - Prints the entire contents of the stack without altering anything.\n" \ | 288 | "f - Prints the entire contents of the stack without altering anything.\n" \ |
287 | "o - Pops the value off the top of the stack and uses it to set the output radix.\n" \ | 289 | "o - Pops the value off the top of the stack and uses it to set the output radix.\n" \ |