1 #ifndef SYSTEM_H
2 #define SYSTEM_H
3 
4 /* This file should be included in every other include file we have,
5  * so we'll define our program wide includes here
6  */
7 
8 #include "config.h"
9 #include "util.h"
10 
11 #define LJ_BUFFER_MAX 1024
12 
13 #if defined(DEBUG4) && !defined(DEBUG3)
14 #define DEBUG3
15 #endif
16 
17 #if defined(DEBUG3) && !defined(DEBUG2)
18 #define DEBUG2
19 #endif
20 
21 #if defined(DEBUG2) && !defined(DEBUG)
22 #define DEBUG
23 #endif
24 
25 #endif
26