Make bunch of macro internal variables static

This commit is contained in:
Panu Matilainen 2008-02-26 22:24:28 +02:00
parent b010266b0e
commit 05129f83dc
1 changed files with 3 additions and 3 deletions

View File

@ -69,13 +69,13 @@ typedef struct MacroBuf_s {
#define _MAX_MACRO_DEPTH 16
int max_macro_depth = _MAX_MACRO_DEPTH;
static int max_macro_depth = _MAX_MACRO_DEPTH;
#define _PRINT_MACRO_TRACE 0
int print_macro_trace = _PRINT_MACRO_TRACE;
static int print_macro_trace = _PRINT_MACRO_TRACE;
#define _PRINT_EXPAND_TRACE 0
int print_expand_trace = _PRINT_EXPAND_TRACE;
static int print_expand_trace = _PRINT_EXPAND_TRACE;
#define MACRO_CHUNK_SIZE 16