]> git.saurik.com Git - wxWidgets.git/commitdiff
Use string.h instead of memory.h, since some system don't have memory.h and
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Tue, 22 Aug 2006 19:04:45 +0000 (19:04 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Tue, 22 Aug 2006 19:04:45 +0000 (19:04 +0000)
string.h is the standard header.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40750 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/longlong.cpp

index 772ecc0b9a600e57d6919b1eaf3bc7aae6c68ff3..e951865bffa0ab6edeaf6e97370ec7d5bff81576 100644 (file)
     #include "wx/txtstrm.h"
 #endif
 
-#if defined(__MWERKS__) && defined(__WXMSW__)
-    #include <string.h>     // for memset()
-#else
-    #include <memory.h>     // for memset()
-#endif
+#include <string.h>            // for memset()
 
 #include "wx/ioswrap.h"