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/uname.c | |
parent | 670a6626cabc1498f32b35f959591f8621d8447e (diff) |
remove bb_printf and the like
Diffstat (limited to 'coreutils/uname.c')
-rw-r--r-- | coreutils/uname.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/uname.c b/coreutils/uname.c index 575fb525c..5a3eafe92 100644 --- a/coreutils/uname.c +++ b/coreutils/uname.c @@ -91,10 +91,10 @@ int uname_main(int argc, char **argv) strcpy(uname_info.processor, "unknown"); - delta=utsname_offset; + delta = utsname_offset; do { if (toprint & 1) { - bb_printf(((char *)(&uname_info)) + *delta); + printf(((char *)(&uname_info)) + *delta); if (toprint > 1) { putchar(' '); } @@ -103,5 +103,5 @@ int uname_main(int argc, char **argv) } while (toprint >>= 1); putchar('\n'); - bb_fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit(EXIT_SUCCESS); } |