From 4daad9004d8f07991516970a1cbd77756fae7041 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 27 Sep 2007 10:20:47 +0000 Subject: introduce bb_putchar(). saves ~1800 on uclibc (less on glibc). --- runit/sv.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'runit') diff --git a/runit/sv.c b/runit/sv.c index 406dc6fc8..7283bbf7d 100644 --- a/runit/sv.c +++ b/runit/sv.c @@ -179,7 +179,7 @@ static void out(const char *p, const char *m1) if (errno) { printf(": %s", strerror(errno)); } - puts(""); /* will also flush the output */ + bb_putchar('\n'); /* will also flush the output */ } #define WARN "warning: " @@ -300,7 +300,7 @@ static int status(const char *unused) printf("; "); svstatus_print("log"); } - puts(""); /* will also flush the output */ + bb_putchar('\n'); /* will also flush the output */ return r; } @@ -372,7 +372,7 @@ static int check(const char *a) } printf(OK); svstatus_print(*service); - puts(""); /* will also flush the output */ + bb_putchar('\n'); /* will also flush the output */ return 1; } @@ -571,7 +571,7 @@ int sv_main(int argc, char **argv) svstatus_print(*service); ++rc; } - puts(""); /* will also flush the output */ + bb_putchar('\n'); /* will also flush the output */ if (kll) control("k"); nullify_service: -- cgit v1.2.3-55-g6feb