#define vsnprintf to _vsnprintf on MSVC.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2701 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
Meep-Eep
2007-02-06 18:06:42 +00:00
parent eb1ca66ef5
commit 9b1ae300e3
+7
View File
@@ -154,6 +154,13 @@ typedef unsigned short mode_t;
# include <alloca.h>
#endif
// String formatting
#ifdef _MSC_VER
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#endif
#endif /* _UIOPORT_H */