diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-07 14:14:26 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-07 14:14:26 +0200 |
commit | 729ecb87bfbbaf9250837d8b8748503c5e97bfd6 (patch) | |
tree | c269d39f4d929671e12ca2dfba90814e3b6f9976 /console-tools | |
parent | 121fb9506bcade96b6fb8b1dbcbbb7699bfb1a9d (diff) | |
download | busybox-w32-729ecb87bfbbaf9250837d8b8748503c5e97bfd6.tar.gz busybox-w32-729ecb87bfbbaf9250837d8b8748503c5e97bfd6.tar.bz2 busybox-w32-729ecb87bfbbaf9250837d8b8748503c5e97bfd6.zip |
bbconfig: make it independent from printf functions
function old new delta
full_write2_str - 25 +25
full_write1_str - 25 +25
clear_main 21 20 -1
telnet_main 1488 1477 -11
getty_main 1932 1918 -14
full_write22_str 25 - -25
------------------------------------------------------------------------------
(add/remove: 2/1 grow/shrink: 0/3 up/down: 50/-51) Total: -1 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/clear.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/console-tools/clear.c b/console-tools/clear.c index b0c6d65d2..cac716394 100644 --- a/console-tools/clear.c +++ b/console-tools/clear.c | |||
@@ -5,16 +5,12 @@ | |||
5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
6 | * | 6 | * |
7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
8 | * | ||
9 | */ | 8 | */ |
10 | |||
11 | /* no options, no getopt */ | ||
12 | |||
13 | #include "libbb.h" | 9 | #include "libbb.h" |
14 | 10 | ||
15 | int clear_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 11 | int clear_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
16 | int clear_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | 12 | int clear_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) |
17 | { | 13 | { |
18 | /* home; clear to the end of screen */ | 14 | /* home; clear to the end of screen */ |
19 | return printf("\033[H""\033[J") != 6; | 15 | return full_write1_str("\033[H""\033[J") != 6; |
20 | } | 16 | } |