rename functions to more understandable names

This commit is contained in:
Denis Vlasenko
2006-10-26 23:25:17 +00:00
parent f0ed376eda
commit ddec5af6b0
27 changed files with 63 additions and 68 deletions

View File

@ -27,10 +27,9 @@ static FILE *cmp_xfopen_input(const char * const filename)
{
FILE *fp;
if ((fp = bb_wfopen_input(filename)) != NULL) {
fp = fopen_or_warn_stdin(filename);
if (fp)
return fp;
}
exit(xfunc_error_retval); /* We already output an error message. */
}