apparently CW always has vsnprintf()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16821 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-08-27 19:04:42 +00:00
parent 1dfc73b8dc
commit 96d7977711

View File

@ -585,7 +585,9 @@ WXDLLEXPORT bool wxOKlibc(); // for internal use
#define wxVsnprintf_ vswprintf
#endif
#else // ASCII
#if (defined(HAVE_VSNPRINTF) || defined(__WXMAC__))
// all versions of CodeWarrior supported by wxWindows apparently have
// vsnprintf()
#if defined(HAVE_VSNPRINTF) || defined(__MWERKS__)
// assume we have snprintf() too if we have vsnprintf()
#define wxVsnprintf_ vsnprintf
#define wxSnprintf_ snprintf