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/setup | |
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/setup')
-rw-r--r-- | src/setup/execute.c | 1 | ||||
-rw-r--r-- | src/setup/joystick.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/setup/execute.c b/src/setup/execute.c index bbb23c38..26f59fd8 100644 --- a/src/setup/execute.c +++ b/src/setup/execute.c @@ -18,6 +18,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <ctype.h> #include <sys/types.h> diff --git a/src/setup/joystick.c b/src/setup/joystick.c index 7f52c65d..d29e85ab 100644 --- a/src/setup/joystick.c +++ b/src/setup/joystick.c @@ -14,6 +14,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include "doomtype.h" #include "i_joystick.h" |