aboutsummaryrefslogtreecommitdiff
path: root/console-tools/reset.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-10-22 10:34:15 +0000
committerEric Andersen <andersen@codepoet.org>2003-10-22 10:34:15 +0000
commit7f6295f51604a97a61958909b652dcf1e0e49485 (patch)
treed54b03624a9f7076e96f6b8d1897a0a7b5db76d5 /console-tools/reset.c
parent28672dd3b9ff9d27c771f011089e38a2928aded7 (diff)
downloadbusybox-7f6295f51604a97a61958909b652dcf1e0e49485.tar.gz
Patch from Arthur Othieno for style-guide.txt conformance
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;
}