nfssvc.2/quotactl.2: Fix includes.
[dragonfly.git] / games / phantasia / include.h
1 /*
2  * include.h - includes all important files for Phantasia
3  */
4
5 #include <ctype.h>
6 #ifndef COMPILING_SETUP
7 #include <curses.h>
8 #endif
9 #include <math.h>
10 #include <setjmp.h>
11 #include <signal.h>
12 #include <time.h>
13 #include <errno.h>
14 #include <stdlib.h>
15 #include <fcntl.h>
16 #include <string.h>
17 #include <unistd.h>
18
19 #ifdef COMPILING_SETUP
20 /* XXX this used to be provided by curses.h */
21 #include <stdio.h>      /* for FILE */
22 #include <stdbool.h>    /* for bool */
23 #ifndef TRUE
24 #define TRUE    true
25 #endif
26 #endif
27
28 #include "macros.h"
29 #include "phantdefs.h"
30 #include "phantstruct.h"
31 #include "phantglobs.h"
32 #include "pathnames.h"