diff options
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 b2d7c0e..bd36d62 100644 --- a/coreutils/pwd.c +++ b/coreutils/pwd.c @@ -17,7 +17,7 @@ int pwd_main(int argc, char **argv) if ((buf = xgetcwd(NULL)) != NULL) { puts(buf); - bb_fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit(EXIT_SUCCESS); } return EXIT_FAILURE; |