comparison arogue7/main.c @ 126:b786053d2f37

arogue7: add missing header includes.
author John "Elwin" Edwards
date Fri, 08 May 2015 16:45:41 -0400
parents adfa37e67084
children 8ae3ffd6c6e7
comparison
equal deleted inserted replaced
125:adfa37e67084 126:b786053d2f37
11 * 11 *
12 * See the file LICENSE.TXT for full copyright and licensing information. 12 * See the file LICENSE.TXT for full copyright and licensing information.
13 */ 13 */
14 14
15 #include "curses.h" 15 #include "curses.h"
16 #include <stdlib.h>
17 #include <string.h>
16 #include <signal.h> 18 #include <signal.h>
17 #ifdef BSD 19 #ifdef BSD
18 #include <sys/time.h> 20 #include <sys/time.h>
19 #else 21 #else
20 #include <time.h> 22 #include <time.h>