Major update of the build system:
[reactos.git] / reactos / tools / rdel.c
similarity index 93%
rename from reactos/rdel.c
rename to reactos/tools/rdel.c
index 9f09b48..d98fd96 100644 (file)
@@ -1,4 +1,4 @@
-/*  $Id: rdel.c,v 1.2 2001/07/28 15:24:04 phreak Exp $  
+/*  $Id: rdel.c,v 1.1 2001/08/21 20:13:17 chorns Exp $  
  * COPYRIGHT:             See COPYING in the top level directory
  * PROGRAMMER:            Rex Jolliff (rex@lvcablemodem.com)
  * PURPOSE:               Platform independant delete command
@@ -74,10 +74,13 @@ main (int argc, char* argv[])
       returnCode = remove (argv [idx]);
       if (returnCode != 0 && errno != ENOENT)
       {
+      /* Continue even if there is errors */
+#if 0
         printf ("Unlink of %s failed.  Unlink returned %d.\n", 
                 argv [idx],
                 returnCode);
         return  returnCode;
+#endif
       }
     }
   }