Mercurial > hg > early-roguelike
comparison srogue/command.c @ 60:3aa87373c908
srogue: include missing headers.
author | elwin |
---|---|
date | Fri, 27 Jan 2012 17:29:30 +0000 |
parents | 24e6beb9e7aa |
children | 47aeaccbb953 |
comparison
equal
deleted
inserted
replaced
59:bb9f7d01e09c | 60:3aa87373c908 |
---|---|
14 * See the file LICENSE.TXT for full copyright and licensing information. | 14 * See the file LICENSE.TXT for full copyright and licensing information. |
15 */ | 15 */ |
16 | 16 |
17 #include <ctype.h> | 17 #include <ctype.h> |
18 #include <signal.h> | 18 #include <signal.h> |
19 #include <stdlib.h> | |
20 #include <string.h> | |
19 #include <limits.h> | 21 #include <limits.h> |
20 #include "rogue.h" | 22 #include "rogue.h" |
21 #include "rogue.ext" | 23 #include "rogue.ext" |
22 #ifdef __DJGPP__ | 24 #ifdef __DJGPP__ |
23 #include <process.h> | 25 #include <process.h> |
26 #else | |
27 #include <unistd.h> | |
24 #endif | 28 #endif |
25 | 29 |
26 /* | 30 /* |
27 * command: | 31 * command: |
28 * Process the user commands | 32 * Process the user commands |