compilation with DJGPP

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2001-12-15 16:45:57 +00:00
parent b0c4280587
commit 2e351786c5

View File

@ -74,7 +74,6 @@ bool wxGetEnv(const wxString& var, wxString *value)
bool wxSetEnv(const wxString& variable, const wxChar *value)
{
#ifdef __WATCOMC__ // has putenv()
wxString s = variable;
if ( value )
s << _T('=') << value;
@ -87,10 +86,6 @@ bool wxSetEnv(const wxString& variable, const wxChar *value)
strcpy(buf, p);
return putenv(buf) == 0;
#else // no way to set an env var
#error "Don't know how to implement wxSetEnv on this platform!"
return FALSE;
#endif
}
const wxChar* wxGetHomeDir(wxString *home)