1984263bcSMatthew Dillon /* 2984263bcSMatthew Dillon * include.h - includes all important files for Phantasia 3984263bcSMatthew Dillon */ 4984263bcSMatthew Dillon 5984263bcSMatthew Dillon #include <ctype.h> 6*e9634912Szrj #ifndef COMPILING_SETUP 7984263bcSMatthew Dillon #include <curses.h> 8*e9634912Szrj #endif 9984263bcSMatthew Dillon #include <math.h> 10984263bcSMatthew Dillon #include <setjmp.h> 11984263bcSMatthew Dillon #include <signal.h> 12984263bcSMatthew Dillon #include <time.h> 13984263bcSMatthew Dillon #include <errno.h> 14984263bcSMatthew Dillon #include <stdlib.h> 15313fa7d1SSascha Wildner #include <fcntl.h> 16313fa7d1SSascha Wildner #include <string.h> 17313fa7d1SSascha Wildner #include <unistd.h> 18984263bcSMatthew Dillon 19*e9634912Szrj #ifdef COMPILING_SETUP 20*e9634912Szrj /* XXX this used to be provided by curses.h */ 21*e9634912Szrj #include <stdio.h> /* for FILE */ 22*e9634912Szrj #include <stdbool.h> /* for bool */ 23*e9634912Szrj #ifndef TRUE 24*e9634912Szrj #define TRUE true 25*e9634912Szrj #endif 26*e9634912Szrj #endif 27*e9634912Szrj 28984263bcSMatthew Dillon #include "macros.h" 29984263bcSMatthew Dillon #include "phantdefs.h" 30984263bcSMatthew Dillon #include "phantstruct.h" 31984263bcSMatthew Dillon #include "phantglobs.h" 32984263bcSMatthew Dillon #include "pathnames.h" 33