From 14053679673217581ff7e6d37df5af771aa4da19 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 16 Feb 1997 07:43:01 -0500 Subject: [PATCH] (is_space): Now external. (is_hor_space): Now static. From-SVN: r13653 --- gcc/cccp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; -- 2.30.2