diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 23:21:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 23:21:47 +0000 |
commit | f0ed376eda5d5c25d270e5100a881fb2d801bee6 (patch) | |
tree | 79166b700c497fbe798b6031e5bbff97e0933573 /coreutils/pwd.c | |
parent | 670a6626cabc1498f32b35f959591f8621d8447e (diff) | |
download | busybox-w32-f0ed376eda5d5c25d270e5100a881fb2d801bee6.tar.gz busybox-w32-f0ed376eda5d5c25d270e5100a881fb2d801bee6.tar.bz2 busybox-w32-f0ed376eda5d5c25d270e5100a881fb2d801bee6.zip |
remove bb_printf and the like
Diffstat (limited to 'coreutils/pwd.c')
-rw-r--r-- | coreutils/pwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/pwd.c b/coreutils/pwd.c index b2d7c0e5f..bd36d627e 100644 --- a/coreutils/pwd.c +++ b/coreutils/pwd.c | |||
@@ -17,7 +17,7 @@ int pwd_main(int argc, char **argv) | |||
17 | 17 | ||
18 | if ((buf = xgetcwd(NULL)) != NULL) { | 18 | if ((buf = xgetcwd(NULL)) != NULL) { |
19 | puts(buf); | 19 | puts(buf); |
20 | bb_fflush_stdout_and_exit(EXIT_SUCCESS); | 20 | fflush_stdout_and_exit(EXIT_SUCCESS); |
21 | } | 21 | } |
22 | 22 | ||
23 | return EXIT_FAILURE; | 23 | return EXIT_FAILURE; |