diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-27 10:20:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-27 10:20:47 +0000 |
commit | 4daad9004d8f07991516970a1cbd77756fae7041 (patch) | |
tree | f1a17e4b168ef8fdf8af92ac5ce8deba89d38db2 /util-linux/getopt.c | |
parent | 1acdc89e992eb3f0548ff48ba586b31c9a0ae232 (diff) | |
download | busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.tar.gz busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.tar.bz2 busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.zip |
introduce bb_putchar(). saves ~1800 on uclibc (less on glibc).
Diffstat (limited to 'util-linux/getopt.c')
-rw-r--r-- | util-linux/getopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/getopt.c b/util-linux/getopt.c index 94fb45761..4767d586c 100644 --- a/util-linux/getopt.c +++ b/util-linux/getopt.c | |||
@@ -195,7 +195,7 @@ static int generate_output(char **argv, int argc, const char *optstr, const stru | |||
195 | printf(" --"); | 195 | printf(" --"); |
196 | while (optind < argc) | 196 | while (optind < argc) |
197 | printf(" %s", normalize(argv[optind++])); | 197 | printf(" %s", normalize(argv[optind++])); |
198 | puts(""); | 198 | bb_putchar('\n'); |
199 | } | 199 | } |
200 | return exit_code; | 200 | return exit_code; |
201 | } | 201 | } |