Separate definition for snprintf

This commit is contained in:
zed 2019-05-16 22:19:08 +03:00
parent cf076661a9
commit 65447dd38a

View File

@ -47,9 +47,9 @@
#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
/***************************************************************************/