]> git.sur5r.net Git - cc65/blob - src/cc65/preproc.h
Fixed a bug
[cc65] / src / cc65 / preproc.h
1 /*
2  * preproc.h
3  *
4  * Ullrich von Bassewitz, 07.06.1998
5  */
6
7
8
9 #ifndef PREPROC_H
10 #define PREPROC_H
11
12
13
14 /*****************************************************************************/
15 /*                                   data                                    */
16 /*****************************************************************************/
17
18
19
20 /* Set when the pp calls expr() recursively */
21 extern unsigned char Preprocessing;
22
23
24
25 /*****************************************************************************/
26 /*                                   code                                    */
27 /*****************************************************************************/
28
29
30
31 void Preprocess (void);
32 /* Preprocess a line */
33
34
35
36 /* End of preproc.h */
37 #endif
38
39
40