diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-18 20:38:48 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-18 20:38:48 +0000 |
commit | ba1d8f67aec3e9dbc3bf9f2fa012cbb1ac4e3ba8 (patch) | |
tree | 8643c4752e3baa29894eb4d8ecc9b34cc78ce585 /gcc/c-lex.h | |
parent | 65678154bf46b19939162dd2f341d7ed89709404 (diff) | |
download | gcc-ba1d8f67aec3e9dbc3bf9f2fa012cbb1ac4e3ba8.tar.gz |
* bitmap.c (bitmap_print): Qualify a char* with the `const' keyword.
* bitmap.h (bitmap_print): Likewise.
* c-decl.c (builtin_function, grokdeclarator, grokfield): Likewise.
* c-lang.c (build_objc_string): Likewise.
* c-lex.c (yyerror, extend_token_buffer): Likewise. Don't include
limits.h or ctype.h. Remove unused variable `p'.
* c-lex.h (yyerror): Qualify a char* with the `const' keyword.
* c-pragma.c (handle_pragma_token): Likewise.
* c-pragma.h (handle_pragma_token): Likewise.
* c-tree.h (build_objc_string, builtin_function, grokfield,
build_indirect_ref, lvalue_or_else, readonly_warning, error_init,
pedwarn_init): Likewise.
* c-typeck.c (convert_for_assignment, warn_for_assignment,
push_string, warning_init, incomplete_type_error,
build_indirect_ref, lvalue_or_else, readonly_warning,
build_c_cast, spelling, push_member_name, print_spelling,
error_init, pedwarn_init, start_init): Likewise.
* objc/objc-act.c (build_objc_string): Likewise.
* print-tree.c (print_node_brief, print_node): Likewise.
* tree.h (lvalue_or_else, print_node, print_node_brief): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25296 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.h')
-rw-r--r-- | gcc/c-lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.h b/gcc/c-lex.h index 255de212398..7d73ab5d366 100644 --- a/gcc/c-lex.h +++ b/gcc/c-lex.h @@ -81,7 +81,7 @@ extern void position_after_white_space PROTO((void)); extern int check_newline PROTO((void)); extern int yylex PROTO((void)); -extern void yyerror PROTO((char *)); +extern void yyerror PROTO((const char *)); extern void forget_protocol_qualifiers PROTO((void)); extern void remember_protocol_qualifiers PROTO((void)); |