Skip to content
Snippets Groups Projects
Commit 6f0c42ede4bc authored by Igor Zlatkovic's avatar Igor Zlatkovic
Browse files

mapped vsnprintf to _vsnprintf for MS runtime

parent 6183eacc67cc
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,7 @@
#include <direct.h>
#if defined(_MSC_VER)
#define mkdir(p,m) (_mkdir(p))
#define vsnprintf(b,c,f,a) (_vsnprintf(b,c,f,a))
#endif
#define HAVE_SYS_STAT_H
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment