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 /procps/fuser.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 'procps/fuser.c')
-rw-r--r-- | procps/fuser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/fuser.c b/procps/fuser.c index f65b05d98..60c10956b 100644 --- a/procps/fuser.c +++ b/procps/fuser.c | |||
@@ -292,7 +292,7 @@ static int fuser_print_pid_list(pid_list *plist) | |||
292 | printf("%d ", curr->pid); | 292 | printf("%d ", curr->pid); |
293 | curr = curr->next; | 293 | curr = curr->next; |
294 | } | 294 | } |
295 | puts(""); | 295 | bb_putchar('\n'); |
296 | return 1; | 296 | return 1; |
297 | } | 297 | } |
298 | 298 | ||