]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wxchar.cpp
Applied [ 821234 ] Fix: erroneous assertion failed wxListBox::SetSelection
[wxWidgets.git] / src / common / wxchar.cpp
index 11233ff4fd70fe9215b75ab884b0d2b2d3f57ac3..06c69bd0cd0319719a899c40ca10bfd4883c1f97 100644 (file)
@@ -1389,19 +1389,20 @@ int isascii( int c )
 }
 #endif
 
-#if defined(__WXWINCE__)
+#if defined(__WXWINCE__) && (_WIN32_WCE <= 211)
+#if (_WIN32_WCE < 300)
 void *calloc( size_t num, size_t size )
 {
     void** ptr = (void **)malloc(num * size);
     memset( ptr, 0, num * size);
     return ptr;
 }
+#endif
 
-#if (_WIN32_WCE <= 211)
 int isspace(int c)
 {
     return (c == ' ');
 }
-#endif
 
 #endif
+