X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=console-tools%2Fclear.c;h=769ce312149057a4b3deb6f58c0b7a6dd1293654;hb=482f2b31e788fdd849f78a3aa91cf6102fc98892;hp=053293ce24315b009781a65ea3c610e81e916182;hpb=b6adbf1be29841501cc49917249e85f273e1df7c;p=oweals%2Fbusybox.git diff --git a/console-tools/clear.c b/console-tools/clear.c index 053293ce2..769ce3121 100644 --- a/console-tools/clear.c +++ b/console-tools/clear.c @@ -10,12 +10,9 @@ /* no options, no getopt */ -#include -#include #include "libbb.h" - -int clear_main(int argc, char **argv); +int clear_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int clear_main(int argc, char **argv) { return printf("\033[H\033[J") != 6;