]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - phantasia/include.h
Rearrange where the alternate definition of __dead goes.
[bsdgames-darwin.git] / phantasia / include.h
1 /* $NetBSD: include.h,v 1.6 2009/05/27 17:44:38 dholland Exp $ */
2
3 /*
4 * include.h - includes all important files for Phantasia
5 */
6
7 #include <ctype.h>
8 #include <errno.h>
9 #include <math.h>
10 #include <setjmp.h>
11 #include <signal.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <time.h>
16 #include <unistd.h>
17
18 #ifndef __dead /* Not NetBSD */
19 #define __dead
20 #endif
21
22 #include "macros.h"
23 #include "phantdefs.h"
24 #include "phantstruct.h"
25 #include "phantglobs.h"
26 #include "pathnames.h"