From: Václav Slavík Date: Tue, 3 Jul 2007 21:11:46 +0000 (+0000) Subject: compilation fix for windows compilers: _wrename is declared in io.h X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4e0a055757f928dce8c53b8e4cb60a699ab43e07 compilation fix for windows compilers: _wrename is declared in io.h git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxcrtbase.h b/include/wx/wxcrtbase.h index 07828befe9..6cc5b4b60d 100644 --- a/include/wx/wxcrtbase.h +++ b/include/wx/wxcrtbase.h @@ -34,6 +34,9 @@ #include #include +#ifdef __WINDOWS__ +#include +#endif #if defined(HAVE_STRTOK_R) && defined(__DARWIN__) && defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS char *strtok_r(char *, const char *, char **);