summaryrefslogtreecommitdiff
path: root/console-tools/reset.c
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 69b1e84..a3f01aa 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;
}