win32: Fix build with VS2013

Should fix #420.
This commit is contained in:
Nick Wellnhofer 2022-10-11 13:00:33 +02:00
parent b05ff0ab0c
commit 8d908c69aa

View File

@ -12,9 +12,13 @@
#define HAVE_STDINT_H
#endif
#if defined(_MSC_VER) && _MSC_VER < 1900
#if defined(_MSC_VER)
#if _MSC_VER < 1900
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#endif
#if _MSC_VER < 1500
#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
#endif
#endif
#endif /* __LIBXML_WIN32_CONFIG__ */