Fix vsnprintf symbol on older VS2003 compiler

This commit is contained in:
Aris Adamantiadis
2010-04-06 22:58:43 +02:00
parent bda836d744
commit 6e65abbe63
3 changed files with 20 additions and 0 deletions

View File

@@ -34,6 +34,15 @@
#ifdef _MSC_VER
#define snprintf _snprintf
#ifndef HAVE_VSNPRINTF
#ifdef HAVE__VSNPRINTF
#define vsnprintf _vsnprintf
#else
#error "neither vsnprintf or vnsprintf available, this may fail"
#endif /* HAVE__VSNPRINTF */
#endif /* HAVE_VSNPRINTF */
/** Imitate define of inttypes.h */
#define PRIdS "Id"
#define strcasecmp _stricmp