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 'console-tools/reset.c')
-rw-r--r--console-tools/reset.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/console-tools/reset.c b/console-tools/reset.c
index 69b1e846a..a3f01aab0 100644
--- a/console-tools/reset.c
+++ b/console-tools/reset.c
@@ -21,13 +21,15 @@
*
*/
+/* no options, no getopt */
+
#include <stdio.h>
#include <stdlib.h>
#include "busybox.h"
extern int reset_main(int argc, char **argv)
{
- printf("\033[?25h\033c\033[J");
- return EXIT_SUCCESS;
+ printf("\033[?25h\033c\033[J");
+ return EXIT_SUCCESS;
}