1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 10:20:33 +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
# include <direct.h>
# define STAT _stat
# define MKDIR(A, B) mkdir(A)
# define MKDIR(A, B) _mkdir(A)
#else
# define STAT stat
# define MKDIR(A, B) mkdir(A, B)