diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-26 23:21:47 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-26 23:21:47 +0000 |
commit | 6dc3a21627db11fa0f374afe29a6bbf4f89c8b64 (patch) | |
tree | 79166b700c497fbe798b6031e5bbff97e0933573 /coreutils/expr.c | |
parent | 076d919b597733c0adf653d0ad10073be4adec7f (diff) | |
download | busybox-w32-6dc3a21627db11fa0f374afe29a6bbf4f89c8b64.tar.gz busybox-w32-6dc3a21627db11fa0f374afe29a6bbf4f89c8b64.tar.bz2 busybox-w32-6dc3a21627db11fa0f374afe29a6bbf4f89c8b64.zip |
remove bb_printf and the like
git-svn-id: svn://busybox.net/trunk/busybox@16446 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r-- | coreutils/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index ea99d8b5b..854a657f9 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c | |||
@@ -87,11 +87,11 @@ int expr_main(int argc, char **argv) | |||
87 | bb_error_msg_and_die("syntax error"); | 87 | bb_error_msg_and_die("syntax error"); |
88 | 88 | ||
89 | if (v->type == integer) | 89 | if (v->type == integer) |
90 | bb_printf("%" PF_REZ "d\n", PF_REZ_TYPE v->u.i); | 90 | printf("%" PF_REZ "d\n", PF_REZ_TYPE v->u.i); |
91 | else | 91 | else |
92 | puts(v->u.s); | 92 | puts(v->u.s); |
93 | 93 | ||
94 | exit(null(v)); | 94 | fflush_stdout_and_exit(null(v)); |
95 | } | 95 | } |
96 | 96 | ||
97 | /* Return a VALUE for I. */ | 97 | /* Return a VALUE for I. */ |