1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-10-05 19:41:40 +00:00

Use _mkdir in Windows

This commit is contained in:
Marc Sanfacon 2013-12-06 11:17:43 -05:00
parent 4ffb2abb19
commit 5f388ad147

View File

@ -15,7 +15,7 @@
#ifdef _WIN32 #ifdef _WIN32
# include <direct.h> # include <direct.h>
# define STAT _stat # define STAT _stat
# define MKDIR(A, B) mkdir(A) # define MKDIR(A, B) _mkdir(A)
#else #else
# define STAT stat # define STAT stat
# define MKDIR(A, B) mkdir(A, B) # define MKDIR(A, B) mkdir(A, B)