diff options
author | Denis Vlasenko | 2006-10-26 23:21:47 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-26 23:21:47 +0000 |
commit | f0ed376eda5d5c25d270e5100a881fb2d801bee6 (patch) | |
tree | 79166b700c497fbe798b6031e5bbff97e0933573 /coreutils/catv.c | |
parent | 670a6626cabc1498f32b35f959591f8621d8447e (diff) | |
download | busybox-f0ed376eda5d5c25d270e5100a881fb2d801bee6.zip busybox-f0ed376eda5d5c25d270e5100a881fb2d801bee6.tar.gz |
remove bb_printf and the like
Diffstat (limited to 'coreutils/catv.c')
-rw-r--r-- | coreutils/catv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/catv.c b/coreutils/catv.c index a5a8b43..66f3069 100644 --- a/coreutils/catv.c +++ b/coreutils/catv.c @@ -42,10 +42,10 @@ int catv_main(int argc, char **argv) if (c > 126 && (flags & CATV_OPT_v)) { if (c == 127) { - bb_printf("^?"); + printf("^?"); continue; } else { - bb_printf("M-"); + printf("M-"); c -= 128; } } @@ -54,7 +54,7 @@ int catv_main(int argc, char **argv) if (flags & CATV_OPT_e) putchar('$'); } else if (flags & (c==9 ? CATV_OPT_t : CATV_OPT_v)) { - bb_printf("^%c", c+'@'); + printf("^%c", c+'@'); continue; } } @@ -65,5 +65,5 @@ int catv_main(int argc, char **argv) close(fd); } while (*++argv); - return retval; + fflush_stdout_and_exit(retval); } |