diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 1999-11-01 08:28:22 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-11-01 08:28:22 +0000 |
| commit | d14ec649a54f7e8bcb26942b5b16b8fc2ee25044 (patch) | |
| tree | 0e33a2f257e9df8e4af5c0ecf0304ce5239fa3bf /contrib/gcc/cppinit.c | |
| parent | 9b305aa15a0971a7bceffbc4d1f20ddbe5b5c5d8 (diff) | |
Notes
Diffstat (limited to 'contrib/gcc/cppinit.c')
| -rw-r--r-- | contrib/gcc/cppinit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/gcc/cppinit.c b/contrib/gcc/cppinit.c index f9bc306bd52f..4fb3ca8d94d9 100644 --- a/contrib/gcc/cppinit.c +++ b/contrib/gcc/cppinit.c @@ -209,7 +209,8 @@ enum { QUOTE = 0, BRACKET, SYSTEM, AFTER }; /* If gcc is in use (stage2/stage3) we can make these tables initialized data. */ -#if defined __GNUC__ && __GNUC__ >= 2 +#if defined __GNUC__ && (__GNUC__ > 2 \ + || (__GNUC__ == 2 && __GNUC_MINOR__ > 6)) /* Table to tell if a character is legal as the second or later character of a C identifier. */ U_CHAR is_idchar[256] = |
