exclude linuxlikes from MSVC8
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2064 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
c0619d3015
commit
bdb177ea94
1 changed files with 4 additions and 0 deletions
|
@ -3067,6 +3067,8 @@ int build_number( void )
|
||||||
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
// don't use these functions in MSVC8
|
||||||
|
#if (_MSC_VER < 1400)
|
||||||
int VARGS linuxlike_snprintf(char *buffer, int size, const char *format, ...)
|
int VARGS linuxlike_snprintf(char *buffer, int size, const char *format, ...)
|
||||||
{
|
{
|
||||||
#undef _vsnprintf
|
#undef _vsnprintf
|
||||||
|
@ -3102,3 +3104,5 @@ int VARGS linuxlike_vsnprintf(char *buffer, int size, const char *format, va_lis
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue