diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2002-04-21 18:46:42 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-04-21 18:46:42 +0000 |
commit | 562a5c27c266280971055d4066ce9cba9403158b (patch) | |
tree | 3ea24655d8eabfdaf624b6cb32ed7b761c98617f /gcc/cppinit.c | |
parent | 9ac3b1bec7b58c6ad4a76782b1116dfb5f4cd0c6 (diff) | |
download | gcc-562a5c27c266280971055d4066ce9cba9403158b.zip gcc-562a5c27c266280971055d4066ce9cba9403158b.tar.gz gcc-562a5c27c266280971055d4066ce9cba9403158b.tar.bz2 |
cppexp.c (struct op, [...]): Replace U_CHAR with uchar.
* cppexp.c (struct op, parse_number): Replace U_CHAR with uchar.
* cppfiles.c (read_include_file): Similarly.
* cpphash.h (DSC, U_CHAR, ustrcmp, ustrncmp, ustrlen,
uxstrdup ustrchr, ufputs): Similarly.
* cppinit.c (TRIGRAPH_MAP, cpp_destroy): Similarly.
* cpplex.c (parse_slow, unescaped_terminator_p, save_comment,
cpp_ideq, parse_identifier, parse_number): Similarly.
* cpplib.c (struct directive, dequote_string, D, run_directive,
cpp_push_buffer): Similarly.
* cppmacro.c (new_string_token, builtin_macro, cpp_quote_string,
_cpp_create_definition, check_trad_stringification,
cpp_macro_definition): Similarly.
From-SVN: r52587
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r-- | gcc/cppinit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c index a9092ed..8caf2ed 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -130,14 +130,14 @@ enum { BRACKET = 0, SYSTEM, AFTER }; #define init_trigraph_map() /* Nothing. */ #define TRIGRAPH_MAP \ -__extension__ const U_CHAR _cpp_trigraph_map[UCHAR_MAX + 1] = { +__extension__ const uchar _cpp_trigraph_map[UCHAR_MAX + 1] = { #define END }; #define s(p, v) [p] = v, #else -#define TRIGRAPH_MAP U_CHAR _cpp_trigraph_map[UCHAR_MAX + 1] = { 0 }; \ +#define TRIGRAPH_MAP uchar _cpp_trigraph_map[UCHAR_MAX + 1] = { 0 }; \ static void init_trigraph_map PARAMS ((void)) { \ unsigned char *x = _cpp_trigraph_map; @@ -619,7 +619,7 @@ cpp_destroy (pfile) Also, macros with CPLUS set in the flags field are entered only for C++. */ struct builtin { - const U_CHAR *name; + const uchar *name; const char *value; unsigned char builtin; unsigned char operator; |