aboutsummaryrefslogtreecommitdiff
path: root/console-tools/reset.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-10-22 10:34:15 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-10-22 10:34:15 +0000
commit2c971a743068433edb67e3b5babbd9debb240b11 (patch)
treed54b03624a9f7076e96f6b8d1897a0a7b5db76d5 /console-tools/reset.c
parent306be44dde8fa430e0cffadbde87d5aecef9530c (diff)
downloadbusybox-w32-2c971a743068433edb67e3b5babbd9debb240b11.tar.gz
busybox-w32-2c971a743068433edb67e3b5babbd9debb240b11.tar.bz2
busybox-w32-2c971a743068433edb67e3b5babbd9debb240b11.zip
Patch from Arthur Othieno for style-guide.txt conformance
git-svn-id: svn://busybox.net/trunk/busybox@7699 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-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