extern int cat_main(int argc, char **argv)
{
+ int status = EXIT_SUCCESS;
+
if (argc == 1) {
print_file(stdin);
- exit(TRUE);
+ return status;
}
while (--argc > 0) {
if(!(strcmp(*++argv, "-"))) {
print_file(stdin);
} else if (print_file_by_name(*argv) == FALSE) {
- perror(*argv);
- exit(FALSE);
+ status = EXIT_FAILURE;
}
}
- return(TRUE);
+ return status;
}
/*
extern int cat_main(int argc, char **argv)
{
+ int status = EXIT_SUCCESS;
+
if (argc == 1) {
print_file(stdin);
- exit(TRUE);
+ return status;
}
while (--argc > 0) {
if(!(strcmp(*++argv, "-"))) {
print_file(stdin);
} else if (print_file_by_name(*argv) == FALSE) {
- perror(*argv);
- exit(FALSE);
+ status = EXIT_FAILURE;
}
}
- return(TRUE);
+ return status;
}
/*
FILE *file;
file = fopen(filename, "r");
if (file == NULL) {
+ errorMsg("%s: %s\n", filename, strerror(errno));
return FALSE;
}
print_file(file);
return TRUE;
}
-#endif /* BB_CAT || BB_LSMOD */
+#endif /* BB_CAT */
#if defined BB_ECHO || defined BB_TR
char process_escape_sequence(char **ptr)