branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / direct / mkdir.c
index 19191f8..e568b9c 100644 (file)
@@ -1,10 +1,10 @@
-#include <crtdll/direct.h>
 #include <windows.h>
+#include <msvcrt/direct.h>
 
 
-int _mkdir( const char *_path )
+int _mkdir(const char* _path)
 {
-       if (!CreateDirectoryA(_path,NULL))
-               return -1;
-       return 0;
+    if (!CreateDirectoryA(_path, NULL))
+        return -1;
+    return 0;
 }