From 73f743a381dc389287d2d0e56a2b7988f67c0bfc Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 23 Nov 2016 14:54:38 +0100 Subject: Remove remnants of disabled "length" applet Signed-off-by: Denys Vlasenko --- coreutils/Config.src | 6 ------ coreutils/Kbuild.src | 2 -- coreutils/length.c.disabled | 31 ------------------------------- 3 files changed, 39 deletions(-) delete mode 100644 coreutils/length.c.disabled (limited to 'coreutils') diff --git a/coreutils/Config.src b/coreutils/Config.src index a35198a3b..c056320f8 100644 --- a/coreutils/Config.src +++ b/coreutils/Config.src @@ -7,12 +7,6 @@ menu "Coreutils" INSERT -####config LENGTH -#### bool "length" -#### default y -#### help -#### length is used to print out the length of a specified string. - comment "Common options" config FEATURE_VERBOSE diff --git a/coreutils/Kbuild.src b/coreutils/Kbuild.src index c93aa63a1..8e2c097a3 100644 --- a/coreutils/Kbuild.src +++ b/coreutils/Kbuild.src @@ -10,8 +10,6 @@ lib-y:= INSERT -#lib-$(CONFIG_LENGTH) += length.o - lib-$(CONFIG_MORE) += cat.o # more uses it if stdout isn't a tty lib-$(CONFIG_LESS) += cat.o # less too lib-$(CONFIG_CRONTAB) += cat.o # crontab -l diff --git a/coreutils/length.c.disabled b/coreutils/length.c.disabled deleted file mode 100644 index aee898d22..000000000 --- a/coreutils/length.c.disabled +++ /dev/null @@ -1,31 +0,0 @@ -/* vi: set sw=4 ts=4: */ -/* - * Licensed under GPLv2, see file LICENSE in this source tree. - */ - -/* BB_AUDIT SUSv3 N/A -- Apparently a busybox (obsolete?) extension. */ - -//usage:#define length_trivial_usage -//usage: "STRING" -//usage:#define length_full_usage "\n\n" -//usage: "Print STRING's length" -//usage: -//usage:#define length_example_usage -//usage: "$ length Hello\n" -//usage: "5\n" - -#include "libbb.h" - -/* This is a NOFORK applet. Be very careful! */ - -int length_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int length_main(int argc, char **argv) -{ - if ((argc != 2) || (**(++argv) == '-')) { - bb_show_usage(); - } - - printf("%u\n", (unsigned)strlen(*argv)); - - return fflush_all(); -} -- cgit v1.2.3