Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'clear.c')
-rw-r--r--clear.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/clear.c b/clear.c
index 67a3af983..899840a8a 100644
--- a/clear.c
+++ b/clear.c
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
/*
* Mini clear implementation for busybox
*
@@ -25,9 +26,8 @@
#include <stdio.h>
-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);
}