another fix for wxSnprintf_

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17167 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2002-09-13 23:22:30 +00:00
parent e32f3f4740
commit 4356ee76a5

View File

@ -593,10 +593,12 @@ WXDLLEXPORT bool wxOKlibc(); // for internal use
#endif
#endif // wxVsnprintf_ not defined yet
#ifndef wxVsnprintf_
#ifndef wxSnprintf_
// no [v]snprintf(), cook our own
WXDLLEXPORT int wxSnprintf_(wxChar *buf, size_t len, const wxChar *format,
...) ATTRIBUTE_PRINTF_3;
#endif
#ifndef wxVsnprintf_
WXDLLEXPORT int wxVsnprintf_(wxChar *buf, size_t len, const wxChar *format,
va_list argptr);
#endif