bc: convert to "G trick" - this returns bc to zero bss increase
[oweals/busybox.git] / coreutils / seq.c
index ed4946b05f07b1de5070ebd3b84680bf3792bb46..c26ff06b9a575f1e1d1dedf0d5aa9acee36482b7 100644 (file)
@@ -7,12 +7,13 @@
  * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 //config:config SEQ
-//config:      bool "seq"
+//config:      bool "seq (3.6 kb)"
 //config:      default y
 //config:      help
-//config:        print a sequence of numbers
+//config:      print a sequence of numbers
 
-//applet:IF_SEQ(APPLET_NOFORK(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq))
+//applet:IF_SEQ(APPLET_NOEXEC(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq))
+/* was NOFORK, but then "seq 1 999999999" can't be ^C'ed if run by hush */
 
 //kbuild:lib-$(CONFIG_SEQ) += seq.o
 
@@ -26,7 +27,7 @@
 
 #include "libbb.h"
 
-/* This is a NOFORK applet. Be very careful! */
+/* This is a NOEXEC applet. Be very careful! */
 
 int seq_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int seq_main(int argc, char **argv)