aboutsummaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/mingw.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/win32/mingw.c b/win32/mingw.c
index 57573bf60..bd855dc7a 100644
--- a/win32/mingw.c
+++ b/win32/mingw.c
@@ -381,3 +381,9 @@ const char *get_busybox_exec_path(void)
381 GetModuleFileName(NULL, path, PATH_MAX); 381 GetModuleFileName(NULL, path, PATH_MAX);
382 return path; 382 return path;
383} 383}
384
385#undef mkdir
386int mingw_mkdir(const char *path, int mode UNUSED_PARAM)
387{
388 return mkdir(path);
389}