diff options
author | Simon Howard | 2015-04-10 23:42:01 -0400 |
---|---|---|
committer | Simon Howard | 2015-04-10 23:42:01 -0400 |
commit | 981d972f3da3418e58da11515db6979d3f85a08a (patch) | |
tree | 7056d825e354d507363de3cd3ed417665ce0a60b /src/heretic | |
parent | 710e963acad611dfd1c5780d9f68f6ef91e93a22 (diff) | |
download | chocolate-doom-981d972f3da3418e58da11515db6979d3f85a08a.tar.gz chocolate-doom-981d972f3da3418e58da11515db6979d3f85a08a.tar.bz2 chocolate-doom-981d972f3da3418e58da11515db6979d3f85a08a.zip |
Add missing #includes.
Diffstat (limited to 'src/heretic')
-rw-r--r-- | src/heretic/mn_menu.c | 1 | ||||
-rw-r--r-- | src/heretic/p_saveg.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/heretic/mn_menu.c b/src/heretic/mn_menu.c index b0a8d6b7..4cd52a0d 100644 --- a/src/heretic/mn_menu.c +++ b/src/heretic/mn_menu.c @@ -16,6 +16,7 @@ // MN_menu.c +#include <stdlib.h> #include <ctype.h> #include "deh_str.h" diff --git a/src/heretic/p_saveg.c b/src/heretic/p_saveg.c index 3bd7c2b2..34e9e906 100644 --- a/src/heretic/p_saveg.c +++ b/src/heretic/p_saveg.c @@ -16,6 +16,8 @@ // P_tick.c +#include <stdlib.h> + #include "doomdef.h" #include "i_swap.h" #include "i_system.h" |