From f0ed376eda5d5c25d270e5100a881fb2d801bee6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 26 Oct 2006 23:21:47 +0000 Subject: remove bb_printf and the like --- coreutils/yes.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'coreutils/yes.c') diff --git a/coreutils/yes.c b/coreutils/yes.c index 97b4fe54c..894506a89 100644 --- a/coreutils/yes.c +++ b/coreutils/yes.c @@ -14,8 +14,6 @@ * Size reductions and removed redundant applet name prefix from error messages. */ -#include -#include #include "busybox.h" int yes_main(int argc, char **argv) @@ -33,7 +31,7 @@ int yes_main(int argc, char **argv) do { fmt = fmt_str + 1; do { - bb_printf(fmt, *argv); + printf(fmt, *argv); fmt = fmt_str; } while (*++argv); argv = first_arg; -- cgit v1.2.3