hexedit: optimize output buffering
[oweals/busybox.git] / miscutils / dc.c
index 2b77cd6148c8afa42bfa076a38685ba3509ce6bc..b922a7184d7d2fe2934662fca61b7ad50dd5cef6 100644 (file)
@@ -3,19 +3,23 @@
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 //config:config DC
-//config:      bool "dc"
+//config:      bool "dc (4.2 kb)"
 //config:      default y
 //config:      help
-//config:        Dc is a reverse-polish desk calculator which supports unlimited
-//config:        precision arithmetic.
+//config:      Dc is a reverse-polish desk calculator which supports unlimited
+//config:      precision arithmetic.
 //config:
 //config:config FEATURE_DC_LIBM
 //config:      bool "Enable power and exp functions (requires libm)"
 //config:      default y
 //config:      depends on DC
 //config:      help
-//config:        Enable power and exp functions.
-//config:        NOTE: This will require libm to be present for linking.
+//config:      Enable power and exp functions.
+//config:      NOTE: This will require libm to be present for linking.
+
+//applet:IF_DC(APPLET(dc, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_DC) += dc.o
 
 //usage:#define dc_trivial_usage
 //usage:       "EXPRESSION..."