Microsoft _vsprintf -> vsprintf particularities

This commit is contained in:
Yan Sweitzer 2000-05-15 09:01:47 +00:00
parent 1efb92f899
commit 2fe6997023
2 changed files with 10 additions and 0 deletions

View file

@ -75,6 +75,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define min(a,b) ((a) < (b) ? (a) : (b))
#endif
#ifdef _WIN32
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#endif
//=============================================================================
// the host system specifies the base of the directory tree, the

View file

@ -62,6 +62,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define min(a,b) ((a) < (b) ? (a) : (b))
#endif
#ifdef _WIN32
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#endif
//=============================================================================
// the host system specifies the base of the directory tree, the