From 9d97ed735622d86ff285b09ea8411753c1f98965 Mon Sep 17 00:00:00 2001 From: Steven Lee Date: Tue, 23 Jun 2015 18:30:24 +0800 Subject: [PATCH] fix issue when compile windows version fix issue: '_mkdir' was not declared in this scope --- src/util/mingw.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/mingw.h b/src/util/mingw.h index f7a3b52..89abf8a 100644 --- a/src/util/mingw.h +++ b/src/util/mingw.h @@ -14,6 +14,7 @@ char *mkdtemp(char *temp); +#include #define mkdir(A, B) _mkdir(A) #define stat _stat