update for HEAD-2003021201
[reactos.git] / lib / crtdll / misc / main.c
index 4d1446b..5ca5e53 100644 (file)
  *
  */
 
-#include <crtdll/stdlib.h>
-#include <crtdll/process.h>
+#include <msvcrt/stdlib.h>
+#include <msvcrt/process.h>
 #include <windows.h>
 
+
 #define ISSPACE(a)     (a == ' ' || a == '\t')
 
-extern int PASCAL WinMain (HANDLE hInst, HANDLE hPrevInst, LPSTR szCmdLine,
-                          int nShow);
+extern int PASCAL WinMain (HANDLE hInst, HANDLE hPrevInst, LPSTR szCmdLine, int nShow);
 
-int
-main (int argc, char* argv[], char* environ[])
+int main(int argc, char* argv[], char* environ[])
 {
-       char*           szCmd;
+       char* szCmd;
        STARTUPINFO     startinfo;
-       int             nRet;
+       int nRet;
 
        /* Get the command line passed to the process. */
        szCmd = GetCommandLineA();
@@ -92,4 +91,3 @@ main (int argc, char* argv[], char* environ[])
 
        return nRet;
 }
-