1 /* File: h-basic.h */
2 
3 #ifndef INCLUDED_H_BASIC_H
4 #define INCLUDED_H_BASIC_H
5 
6 /*
7  * The most basic "include" file.
8  *
9  * This file simply includes other low level header files.
10  */
11 
12 /* System Configuration */
13 #include "../h-config.h"
14 
15 /* System includes/externs */
16 #include "h-system.h"
17 
18 /* Basic types */
19 #include "h-type.h"
20 
21 /* Basic constants and macros */
22 #include "h-define.h"
23 
24 /* Basic networking stuff */
25 #include "h-net.h"
26 
27 #endif
28 
29