From: Michael Wetherell Date: Tue, 22 Aug 2006 19:04:45 +0000 (+0000) Subject: Use string.h instead of memory.h, since some system don't have memory.h and X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5b8ee5dec95988e3931c5394fbeb607e48fb2931 Use string.h instead of memory.h, since some system don't have memory.h and string.h is the standard header. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40750 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/longlong.cpp b/src/common/longlong.cpp index 772ecc0b9a..e951865bff 100644 --- a/src/common/longlong.cpp +++ b/src/common/longlong.cpp @@ -33,11 +33,7 @@ #include "wx/txtstrm.h" #endif -#if defined(__MWERKS__) && defined(__WXMSW__) - #include // for memset() -#else - #include // for memset() -#endif +#include // for memset() #include "wx/ioswrap.h"