diff options
author | Simon Howard | 2009-06-10 21:21:32 +0000 |
---|---|---|
committer | Simon Howard | 2009-06-10 21:21:32 +0000 |
commit | cbc795a34e42b43c02357aba14623e2014685920 (patch) | |
tree | 393c7cbe08020a36197fbf1e72841535a45f4fde | |
parent | 17bca65007022e49448b9f4d30424576fa3048d4 (diff) | |
download | chocolate-doom-cbc795a34e42b43c02357aba14623e2014685920.tar.gz chocolate-doom-cbc795a34e42b43c02357aba14623e2014685920.tar.bz2 chocolate-doom-cbc795a34e42b43c02357aba14623e2014685920.zip |
Fix warnings.
Subversion-branch: /branches/raven-branch
Subversion-revision: 1590
-rw-r--r-- | src/doom/deh_cheat.c | 1 | ||||
-rw-r--r-- | src/i_endoom.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/doom/deh_cheat.c b/src/doom/deh_cheat.c index b953c8a8..8817c56e 100644 --- a/src/doom/deh_cheat.c +++ b/src/doom/deh_cheat.c @@ -25,6 +25,7 @@ //----------------------------------------------------------------------------- #include <stdlib.h> +#include <string.h> #include "doomtype.h" diff --git a/src/i_endoom.c b/src/i_endoom.c index b053b433..08cfb99e 100644 --- a/src/i_endoom.c +++ b/src/i_endoom.c @@ -23,6 +23,8 @@ // //----------------------------------------------------------------------------- +#include <string.h> + #include "doomtype.h" #include "i_video.h" |