remove echo_main -> bb_echo indirection

This commit is contained in:
Denis Vlasenko
2007-11-24 02:23:51 +00:00
parent c3c6659f12
commit fe5e23bf75
4 changed files with 11 additions and 15 deletions

View File

@ -853,7 +853,7 @@ static int builtin_echo(char **argv)
argc++;
argv++;
}
return bb_echo(argc, argv - argc);
return echo_main(argc, argv - argc);
}
/* built-in 'eval' handler */