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:
TimeServ 2006-03-06 21:33:29 +00:00
parent c0619d3015
commit bdb177ea94
1 changed files with 4 additions and 0 deletions

View File

@ -3067,6 +3067,8 @@ int build_number( void )
#ifdef _WIN32
// don't use these functions in MSVC8
#if (_MSC_VER < 1400)
int VARGS linuxlike_snprintf(char *buffer, int size, const char *format, ...)
{
#undef _vsnprintf
@ -3102,3 +3104,5 @@ int VARGS linuxlike_vsnprintf(char *buffer, int size, const char *format, va_lis
return ret;
}
#endif
#endif