diff options
Diffstat (limited to 'externals/grill/flext')
-rw-r--r-- | externals/grill/flext/flext.cw | bin | 454327 -> 454327 bytes | |||
-rw-r--r-- | externals/grill/flext/source/flutil.cpp | 6 |
2 files changed, 5 insertions, 1 deletions
diff --git a/externals/grill/flext/flext.cw b/externals/grill/flext/flext.cw Binary files differindex 89710be8..b418effb 100644 --- a/externals/grill/flext/flext.cw +++ b/externals/grill/flext/flext.cw diff --git a/externals/grill/flext/source/flutil.cpp b/externals/grill/flext/source/flutil.cpp index 92e3beaa..5d9b20d7 100644 --- a/externals/grill/flext/source/flutil.cpp +++ b/externals/grill/flext/source/flutil.cpp @@ -18,7 +18,11 @@ WARRANTIES, see the file, "license.txt," in this distribution. #if FLEXT_OS == FLEXT_OS_WIN #include <windows.h> #elif FLEXT_OS == FLEXT_OS_MAC -#include <MacMemory.h> + #ifdef __MWERKS__ + #include <MacMemory.h> + #else + #include <Carbon/Carbon.h> + #endif #endif void flext::CopyMem(void *dst,const void *src,int bytes) |