Use non-standard replacement functions for msvc.

This commit is contained in:
Jef Driesen 2012-06-21 21:34:48 +02:00
parent 14b28cb993
commit af51b58a09

View File

@ -28,6 +28,12 @@
#include <unistd.h>
#endif
#ifdef _MSC_VER
#define snprintf _snprintf
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
#endif
#ifdef _WIN32
#define DC_TICKS_FORMAT "%I64d"
#else