diff options
author | Travis Howell | 2006-09-23 01:05:30 +0000 |
---|---|---|
committer | Travis Howell | 2006-09-23 01:05:30 +0000 |
commit | 17d4f41a88023fbf4d1393e9a5fac454e98bee92 (patch) | |
tree | f2989066082d37fd0dc1f8cc2918238e0b4f9be8 | |
parent | f0ac3d1c9e381a773cd4d50b770b4e44a1fa645b (diff) | |
download | scummvm-rg350-17d4f41a88023fbf4d1393e9a5fac454e98bee92.tar.gz scummvm-rg350-17d4f41a88023fbf4d1393e9a5fac454e98bee92.tar.bz2 scummvm-rg350-17d4f41a88023fbf4d1393e9a5fac454e98bee92.zip |
Fix mingw compile
svn-id: r23976
-rw-r--r-- | common/util.cpp | 3 | ||||
-rw-r--r-- | engines/engine.cpp | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/common/util.cpp b/common/util.cpp index f5ac5ec077..6f4f3f1a67 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -20,6 +20,9 @@ */ #include "common/stdafx.h" +#if defined(WIN32) && !defined (__SYMBIAN32__) +#include <malloc.h> +#endif #include "engines/engine.h" #include "common/util.h" #include "common/system.h" diff --git a/engines/engine.cpp b/engines/engine.cpp index 819b04da46..0790c19a1b 100644 --- a/engines/engine.cpp +++ b/engines/engine.cpp @@ -20,9 +20,6 @@ */ #include "common/stdafx.h" -#if defined(WIN32) && !defined (__SYMBIAN32__) -#include <malloc.h> -#endif #include "engines/engine.h" #include "common/config-manager.h" #include "common/file.h" |