19191f809f58a7689c61705862d7fc40e549ef2a
[reactos.git] / lib / crtdll / direct / mkdir.c
1 #include <crtdll/direct.h>
2 #include <windows.h>
3
4
5 int _mkdir( const char *_path )
6 {
7         if (!CreateDirectoryA(_path,NULL))
8                 return -1;
9         return 0;
10 }