Fix redefinition warning in modern MSVC

Fix warning shown when compiling using modern C standards instead of
MSVC legacy (which is still the default).
This commit is contained in:
Václav Slavík 2024-07-24 09:19:09 +02:00
parent de548bb0be
commit ada2aaf179

View File

@ -47,7 +47,9 @@ typedef struct zip_source zip_source_t;
#if defined(_MSC_VER)
# undef DLL_EXPORT_XLSXIO
# define DLL_EXPORT_XLSXIO
# define va_copy(dst,src) ((dst) = (src))
# ifndef va_copy
# define va_copy(dst,src) ((dst) = (src))
# endif
#endif
#ifdef _WIN32