aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-02-18 20:13:18 +0000
committerEric Andersen <andersen@codepoet.org>2001-02-18 20:13:18 +0000
commit963791a9e9fb06ea515089925f95cf413374c1bc (patch)
tree2cbea90fc04e0f7ae1a4966e90e061495b121da8 /coreutils/tail.c
parentf1bbb22dca4d39aa227246f4c2ee90acd7e512a4 (diff)
downloadbusybox-963791a9e9fb06ea515089925f95cf413374c1bc.tar.gz
Another patch from Vladimir to eliminate obsolete junk.
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r--coreutils/tail.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index a3b8f6d23..778c2d18b 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -37,12 +37,6 @@ static const struct suffix_mult tail_suffixes[] = {
{ NULL, 0 }
};
-#ifndef BB_FEATURE_SIMPLE_TAIL
-static const struct suffix_mult null_suffixes[] = {
- { NULL, 0 }
-};
-#endif
-
static const int BYTES = 0;
static const int LINES = 1;
@@ -96,7 +90,7 @@ int tail_main(int argc, char **argv)
hide_headers = 1;
break;
case 's':
- sleep_period = parse_number(optarg, null_suffixes);
+ sleep_period = parse_number(optarg, 0);
break;
case 'v':
show_headers = 1;