X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cbffcf1117944db24ee8c196440702172dd0923f..682214d5c6ec3e56dbdfd0c97d70d87e614b38c2:/include/wx/wxchar.h?ds=sidebyside diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index 6e5017ab7e..dd6e3851c2 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -371,7 +371,8 @@ /* #define wxAtof _tttof -- notice that there is no such thing (why?) */ /* there are no env vars at all under CE, so no _tgetenv neither */ #ifdef __WXWINCE__ - inline wxChar *wxGetenv(const wxChar *) { return NULL; } + /* can't define as inline function as this is a C file... */ + #define wxGetenv(name) ((wxChar *)NULL) #else #define wxGetenv _tgetenv #endif