add the base .rbuild files
[reactos.git] / reactos / subsys / system / cmd / main.c
diff --git a/reactos/subsys/system/cmd/main.c b/reactos/subsys/system/cmd/main.c
deleted file mode 100644 (file)
index 85bb80b..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <precomp.h>
-#include "resource.h"
-
-#ifdef _UNICODE
-extern int _main (void);
-#else
-extern int _main (int argc, char *argv[]);
-#endif
-
-/*
- * main function
- */
-#ifdef _UNICODE
-int main(void)
-#else
-int main (int argc, char *argv[])
-#endif
-{
-#ifdef _UNICODE
-  return _main();
-#else
-  return _main(argc, argv);
-#endif
-}
-
-/* EOF */