aboutsummaryrefslogtreecommitdiff
path: root/coreutils/length.c.disabled
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/length.c.disabled')
-rw-r--r--coreutils/length.c.disabled31
1 files changed, 0 insertions, 31 deletions
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();
-}