X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=clear.c;h=c27787ed3db5e94c2e049ace793b1cf9ecadd486;hb=f93a95de6960b1d1977a934aafd3e9a8b8ea1765;hp=bc813064ec042bc9072627890fb155f95db5afd3;hpb=2ce1edcf544ac675e6762c9861a6b918401ea716;p=oweals%2Fbusybox.git diff --git a/clear.c b/clear.c index bc813064e..c27787ed3 100644 --- a/clear.c +++ b/clear.c @@ -1,7 +1,10 @@ +/* vi: set sw=4 ts=4: */ /* * Mini clear implementation for busybox * - * Copyright (C) 1998 by Erik Andersen + * + * Copyright (C) 1999,2000 by Lineo, inc. + * Written by Erik Andersen , * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,9 +26,8 @@ #include -extern int -clear_main(int argc, char** argv) +extern int clear_main(int argc, char **argv) { printf("\033[H\033[J"); - exit( TRUE); + exit(TRUE); }