Fix to compile with mingw-w64

This commit is contained in:
zed 2019-05-15 21:43:56 +03:00
parent 64c4c7f868
commit cf076661a9

View File

@ -45,7 +45,7 @@
#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