Merge pull request #396 from zedxxx/master

Fix to compile with mingw-w64
This commit is contained in:
Nathan Moinvaziri 2019-05-16 13:35:46 -07:00 committed by GitHub
commit 27687efc01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,11 +45,11 @@
#include <ctype.h> /* tolower */
#include <stdio.h> /* snprintf */
#if defined(_MSC_VER)
#if defined(_MSC_VER) || defined(__MINGW32__)
# define localtime_r(t1,t2) (localtime_s(t2,t1) == 0 ? t1 : NULL)
# if (_MSC_VER < 1900)
# define snprintf _snprintf
# endif
#endif
#if defined(_MSC_VER) && (_MSC_VER < 1900)
# define snprintf _snprintf
#endif
/***************************************************************************/