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-w32-7f6295f51604a97a61958909b652dcf1e0e49485.tar.gz
busybox-w32-7f6295f51604a97a61958909b652dcf1e0e49485.tar.bz2
busybox-w32-7f6295f51604a97a61958909b652dcf1e0e49485.zip
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 @@
21 * 21 *
22 */ 22 */
23 23
24/* no options, no getopt */
25
24#include <stdio.h> 26#include <stdio.h>
25#include <stdlib.h> 27#include <stdlib.h>
26#include "busybox.h" 28#include "busybox.h"
27 29
28extern int reset_main(int argc, char **argv) 30extern int reset_main(int argc, char **argv)
29{ 31{
30 printf("\033[?25h\033c\033[J"); 32 printf("\033[?25h\033c\033[J");
31 return EXIT_SUCCESS; 33 return EXIT_SUCCESS;
32} 34}
33 35