* archival/bunzip2.c (bunzip2_main): Do not remove files if writing to standard
[oweals/busybox.git] / coreutils / cat.c
index 151ce4e61fa79ede7c05582e1262628a192f8d4d..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
@@ -21,8 +21,9 @@
  *
  */
 
+#include <stdlib.h>
+#include <string.h>
 #include "busybox.h"
-#include <stdio.h>
 
 extern int cat_main(int argc, char **argv)
 {
@@ -36,7 +37,7 @@ extern int cat_main(int argc, char **argv)
        while (--argc > 0) {
                if(!(strcmp(*++argv, "-"))) {
                        print_file(stdin);
-               } else if (print_file_by_name(*argv) == FALSE) {
+               } else if (! print_file_by_name(*argv)) {
                        status = EXIT_FAILURE;
                }
        }