comparison arogue7/options.c @ 126:b786053d2f37

arogue7: add missing header includes.
author John "Elwin" Edwards
date Fri, 08 May 2015 16:45:41 -0400
parents adfa37e67084
children 9c4e50b5825c
comparison
equal deleted inserted replaced
125:adfa37e67084 126:b786053d2f37
19 * 19 *
20 */ 20 */
21 21
22 #include "curses.h" 22 #include "curses.h"
23 #include <ctype.h> 23 #include <ctype.h>
24 #include <string.h>
24 #include "rogue.h" 25 #include "rogue.h"
25 26
26 #define NUM_OPTS (sizeof optlist / sizeof (OPTION)) 27 #define NUM_OPTS (sizeof optlist / sizeof (OPTION))
27 28
28 29