From: Richard Kenner Date: Sun, 16 Feb 1997 12:43:01 +0000 (-0500) Subject: (is_space): Now external. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=14053679673217581ff7e6d37df5af771aa4da19;p=gcc.git (is_space): Now external. (is_hor_space): Now static. From-SVN: r13653 --- diff --git a/gcc/cccp.c b/gcc/cccp.c index da9d812cf52..7bbe29ae7c3 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -1020,9 +1020,9 @@ U_CHAR is_idchar[256]; /* table to tell if char can be first char of a c identifier. */ U_CHAR is_idstart[256]; /* table to tell if c is horizontal space. */ -U_CHAR is_hor_space[256]; +static U_CHAR is_hor_space[256]; /* table to tell if c is horizontal or vertical space. */ -static U_CHAR is_space[256]; +U_CHAR is_space[256]; /* names of some characters */ static char *char_name[256];