blob: db7e3925ca2540e44a551ff04e001088a26ad7a3 [file] [log] [blame]
Mark Slee31985722006-05-24 21:45:31 +00001#ifndef T_GLOBALS_H
2#define T_GLOBALS_H
3
4class t_program;
5
6/** Global variable: the master program parse tree */
7extern t_program* g_program;
8
9/** Global debug state */
10extern int g_debug;
11
12/** Global time string */
13extern char* g_time_str;
14
15#endif