Use built-in snprintf on VS2015

This commit is contained in:
libertyernie 2015-08-30 10:10:26 -05:00
parent 5bc8e8b161
commit 1cdb67dd88

View File

@ -14,7 +14,9 @@
#endif
#define inline _inline
#define strcasecmp _stricmp
#if (_MSC_VER < 1900)
#define snprintf _snprintf
#endif
#else
#include <stdint.h>
#endif