aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-05-16 00:13:18 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-05-16 00:13:18 +0200
commit6afc6775e8b57ff275b9c0919c107d739cdf0b7c (patch)
treea816a33d48786a3e09a7bb09cfbb76a5c9af0aae /miscutils
parent4566e172eb2423bdcec68babde907cd06e8fc997 (diff)
downloadbusybox-w32-6afc6775e8b57ff275b9c0919c107d739cdf0b7c.tar.gz
busybox-w32-6afc6775e8b57ff275b9c0919c107d739cdf0b7c.tar.bz2
busybox-w32-6afc6775e8b57ff275b9c0919c107d739cdf0b7c.zip
dc: do not advertise ops disabled in .config
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/dc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c
index 777ec1654..b080ba133 100644
--- a/miscutils/dc.c
+++ b/miscutils/dc.c
@@ -11,7 +11,7 @@
11//usage: 11//usage:
12//usage:#define dc_full_usage "\n\n" 12//usage:#define dc_full_usage "\n\n"
13//usage: "Tiny RPN calculator. Operations:\n" 13//usage: "Tiny RPN calculator. Operations:\n"
14//usage: "+, add, -, sub, *, mul, /, div, %, mod, **, exp, and, or, not, eor,\n" 14//usage: "+, add, -, sub, *, mul, /, div, %, mod, "IF_FEATURE_DC_LIBM("**, exp, ")"and, or, not, eor,\n"
15//usage: "p - print top of the stack (without popping),\n" 15//usage: "p - print top of the stack (without popping),\n"
16//usage: "f - print entire stack,\n" 16//usage: "f - print entire stack,\n"
17//usage: "o - pop the value and set output radix (must be 10, 16, 8 or 2).\n" 17//usage: "o - pop the value and set output radix (must be 10, 16, 8 or 2).\n"