]> git.saurik.com Git - wxWidgets.git/commitdiff
a mistake; djgpp doesn't have vsnprintf at all
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 16 Dec 2001 20:35:22 +0000 (20:35 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 16 Dec 2001 20:35:22 +0000 (20:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13040 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/string.cpp

index 7b9e37687073db176547bd24b5c7414eb2375056..b45a1482a020d4bf564b139456d0f1bda485f849 100644 (file)
@@ -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