]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wxchar.cpp
more DLL compilation changes
[wxWidgets.git] / src / common / wxchar.cpp
index fba42b93527ae00051234295f354fa8cb9d9a095..90ec19c7b659c17d46d553444e9c467b35d03135 100644 (file)
@@ -146,7 +146,7 @@ int WXDLLEXPORT wxToupper(wxChar ch) { return (wxChar)CharUpper((LPTSTR)(ch)); }
 #endif
 
 #ifndef wxStrdup
-wxChar * WXDLLEXPORT wxStrdup(const wxChar *psz)
+WXDLLEXPORT wxChar * wxStrdup(const wxChar *psz)
 {
   size_t size = (wxStrlen(psz) + 1) * sizeof(wxChar);
   wxChar *ret = (wxChar *) malloc(size);
@@ -168,7 +168,7 @@ int WXDLLEXPORT wxStricmp(const wxChar *psz1, const wxChar *psz2)
 #endif
 
 #ifndef wxStrtok
-wxChar * WXDLLEXPORT wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_ptr)
+WXDLLEXPORT wxChar * wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_ptr)
 {
   if (!psz) psz = *save_ptr;
   psz += wxStrspn(psz, delim);