- Start rosapps rearrange and cleanup process.
[reactos.git] / rosapps / sysutils / utils / cat / cat.c
diff --git a/rosapps/sysutils/utils/cat/cat.c b/rosapps/sysutils/utils/cat/cat.c
deleted file mode 100644 (file)
index 97fbf38..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <stdlib.h>
-#include <stdio.h>
-
-int main(int argc, char* argv[])
-{
-   int i;
-   FILE* in;
-   char ch;
-
-   for (i=1; i<argc; i++)
-     {
-       in = fopen(argv[i],"r");
-       if (in == NULL)
-         {
-            printf("Failed to open file %s\n", argv[i]);
-            return(0);
-         }
-
-       while ((ch = fgetc(in)) != EOF)
-         {
-            putchar(ch);
-         }
-       fclose(in);
-     }
-   return 0;
-}