From: Václav Slavík Date: Sun, 16 Dec 2001 20:35:22 +0000 (+0000) Subject: a mistake; djgpp doesn't have vsnprintf at all X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/783fab59e5d3ea3f98dfcd5793d01848a2b5ed6b a mistake; djgpp doesn't have vsnprintf at all git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13040 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/string.cpp b/src/common/string.cpp index 7b9e376870..b45a1482a0 100644 --- a/src/common/string.cpp +++ b/src/common/string.cpp @@ -133,7 +133,7 @@ extern const wxChar WXDLLEXPORT *wxEmptyString = &g_strEmpty.dummy; #endif //compiler #endif // no vsnprintf -#if defined(_AIX) || defined(__DJGPP__) +#if defined(_AIX) // AIX has vsnprintf, but there's no prototype in the system headers. extern "C" int vsnprintf(char* str, size_t n, const char* format, va_list ap); #endif