update for HEAD-2003021201
[reactos.git] / lib / msvcrt / process / _system.c
index ef72256..52244f8 100644 (file)
@@ -13,6 +13,7 @@
 #include <msvcrt/string.h>
 #include <msvcrt/process.h>
 #include <msvcrt/errno.h>
+#include <msvcrt/internal/file.h>
 
 int system(const char *command)
 {
@@ -30,8 +31,7 @@ int system(const char *command)
 
 // system should return 0 if command is null and the shell is found
 
-  if (command == NULL)
-    {
+  if (command == NULL) {
       if (szComSpec == NULL)
        return 0;
       else