From cda816306d437d4b7c170afcd983263b5fb83c17 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 21 Jun 2008 15:15:40 -0700 Subject: Drop the index tables from the canned macros Instead of an array of strings, just have a character array; that reduces the size of canned macros by up to 30%, and we only did sequential access anyway. --- preproc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'preproc.h') diff --git a/preproc.h b/preproc.h index a79ae27..1c52682 100644 --- a/preproc.h +++ b/preproc.h @@ -15,7 +15,7 @@ extern const char * const pp_directives[]; extern const int pp_directives_len[]; /* Pointer to a macro chain */ -typedef const char * const macros_t; +typedef const char macros_t; enum preproc_token pp_token_hash(const char *token); void pp_include_path(char *); -- cgit v1.2.3