* archival/bunzip2.c (bunzip2_main): Do not remove files if writing to standard
[oweals/busybox.git] / coreutils / cat.c
index d47f814cf43e041bc97a7149bef9d203822b0903..33f15da71fc3314d7be667b32ca9bbf00e6c6b57 100644 (file)
@@ -2,8 +2,8 @@
 /*
  * Mini Cat implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  */
 
-#include "internal.h"
-#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "busybox.h"
 
 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);
+               } else if (! print_file_by_name(*argv)) {
+                       status = EXIT_FAILURE;
                }
        }
-       return(TRUE);
+       return status;
 }
 
 /*