ui/common/properties.c

changeset 517
ac867877999e
parent 513
a4e0ef98a8b4
child 588
59ea5791be5e
equal deleted inserted replaced
516:4b31c74666d7 517:ac867877999e
114 return buf.space; 114 return buf.space;
115 } 115 }
116 116
117 static int ui_mkdir(char *path) { 117 static int ui_mkdir(char *path) {
118 #ifdef _WIN32 118 #ifdef _WIN32
119 return mkdir(path); 119 return _mkdir(path);
120 #else 120 #else
121 return mkdir(path, S_IRWXU); 121 return mkdir(path, S_IRWXU);
122 #endif 122 #endif
123 } 123 }
124 124

mercurial