Use the native vswprintf on OSX

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43171 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-11-07 20:29:57 +00:00
parent 6750264e50
commit 047fa46b8a

View File

@@ -881,10 +881,8 @@ WXDLLIMPEXP_BASE bool wxOKlibc(); /* for internal use */
/* /*
MinGW MSVCRT has non-standard vswprintf() (for MSVC compatibility MinGW MSVCRT has non-standard vswprintf() (for MSVC compatibility
presumably) and normally _vsnwprintf() is used instead presumably) and normally _vsnwprintf() is used instead
vswprintf() under (early versions of) OS X is buggy
*/ */
#if defined(HAVE_VSWPRINTF) && (defined(__MINGW32__) || defined(__DARWIN__)) #if defined(HAVE_VSWPRINTF) && defined(__MINGW32__)
#undef HAVE_VSWPRINTF #undef HAVE_VSWPRINTF
#endif #endif