diff options
author | Matt Kraai <kraai@debian.org> | 2000-07-19 19:24:01 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-07-19 19:24:01 +0000 |
commit | 27a804246af28c5d3d1f69d93049e3e21492bc48 (patch) | |
tree | 1532267f0161afd05240909eafea4283247df356 /console-tools | |
parent | 869057238b4ae1544ee9df28fca4157b041175f9 (diff) | |
download | busybox-w32-27a804246af28c5d3d1f69d93049e3e21492bc48.tar.gz busybox-w32-27a804246af28c5d3d1f69d93049e3e21492bc48.tar.bz2 busybox-w32-27a804246af28c5d3d1f69d93049e3e21492bc48.zip |
Centralize handling of --help.
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/clear.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/console-tools/clear.c b/console-tools/clear.c index b1641bd1c..dba105691 100644 --- a/console-tools/clear.c +++ b/console-tools/clear.c | |||
@@ -28,9 +28,6 @@ | |||
28 | 28 | ||
29 | extern int clear_main(int argc, char **argv) | 29 | extern int clear_main(int argc, char **argv) |
30 | { | 30 | { |
31 | if (argc > 1 && strcmp(argv[1], "--help") == 0) | ||
32 | usage(clear_usage); | ||
33 | |||
34 | printf("\033[H\033[J"); | 31 | printf("\033[H\033[J"); |
35 | return(TRUE); | 32 | return(TRUE); |
36 | } | 33 | } |