aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendan Kehoe <brendan@cygnus.com>1998-04-08 09:57:52 +0000
committerBrendan Kehoe <brendan@gcc.gnu.org>1998-04-08 05:57:52 -0400
commit0806342bc192f1b4ec551a9101d580d24da9ced2 (patch)
treef8c47fd13e6641cbf0c3dad9aedcceb9f42ac687
parent6f7349082d53fcf2d42ffe655cff938d3da173f9 (diff)
downloadgcc-0806342bc192f1b4ec551a9101d580d24da9ced2.zip
gcc-0806342bc192f1b4ec551a9101d580d24da9ced2.tar.gz
gcc-0806342bc192f1b4ec551a9101d580d24da9ced2.tar.bz2
c-lex.h (is_class_name): Fix arg type to be tree, not void.
* c-lex.h (is_class_name): Fix arg type to be tree, not void. (make_pointer_declarator, reinit_parse_for_function): Fix typo. From-SVN: r19040
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/c-lex.h6
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5707a6d..732b76c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+1998-04-08 Brendan Kehoe <brendan@cygnus.com>
+
+ * c-lex.h (is_class_name): Fix arg type to be tree, not void.
+ (make_pointer_declarator, reinit_parse_for_function): Fix typo.
+
Wed Apr 8 06:16:45 1998 Richard Earnshaw (rearnsha@arm.com)
* arm.h (LEGITIMIZE_RELOAD_ADDRESS): Define.
diff --git a/gcc/c-lex.h b/gcc/c-lex.h
index 5515ce4..66726ab 100644
--- a/gcc/c-lex.h
+++ b/gcc/c-lex.h
@@ -73,8 +73,8 @@ extern tree lastiddecl;
extern char *token_buffer; /* Pointer to token buffer. */
-extern tree make_pointer_declarator ((tree, tree));
-extern void reinit_parse_for_function ((void));
+extern tree make_pointer_declarator PROTO((tree, tree));
+extern void reinit_parse_for_function PROTO((void));
extern void position_after_whitespace PROTO((void));
extern int check_newline PROTO((void));
@@ -85,4 +85,4 @@ extern char *get_directive_line PROTO((FILE *));
extern void forget_protocol_qualifiers PROTO((void));
extern void remember_protocol_qualifiers PROTO((void));
-extern tree is_class_name PROTO((void));
+extern tree is_class_name PROTO((tree));