diff options
author | Max Horn | 2002-12-17 09:29:28 +0000 |
---|---|---|
committer | Max Horn | 2002-12-17 09:29:28 +0000 |
commit | 63006daba48e8afa7ead6c74392ec0cc3a5152e4 (patch) | |
tree | 6da20fc3c76bddcf6e8ec342ebb155e164ac05e2 | |
parent | 83da387eef75aa1140c81bd9e3e002ae3ea83864 (diff) | |
download | scummvm-rg350-63006daba48e8afa7ead6c74392ec0cc3a5152e4.tar.gz scummvm-rg350-63006daba48e8afa7ead6c74392ec0cc3a5152e4.tar.bz2 scummvm-rg350-63006daba48e8afa7ead6c74392ec0cc3a5152e4.zip |
added missing #include <string.h> (for memset)
svn-id: r6008
-rw-r--r-- | common/savefile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/savefile.h b/common/savefile.h index 952b07e44f..2770ed1702 100644 --- a/common/savefile.h +++ b/common/savefile.h @@ -24,6 +24,7 @@ #define COMMON_SAVEFILE_H #include <stdio.h> +#include <string.h> class SaveFile { public: |