From 6c31a901b2c4c4438aafaae5d94eb717002479a5 Mon Sep 17 00:00:00 2001 From: ghazi Date: Mon, 9 Aug 1999 23:38:41 +0000 Subject: * tree.h (lang_identify): Constify a char*. (print_error_function): Add extern prototype. Constify a char*. * c-lang.c (lang_identify): Constify a char*. * objc/objc-act.c (lang_identify): Constify a char*. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28631 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gcc/tree.h') diff --git a/gcc/tree.h b/gcc/tree.h index 8380560e8ee..a56b202a268 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2077,7 +2077,11 @@ extern void lang_init PROTO((void)); extern void lang_finish PROTO((void)); /* Function to identify which front-end produced the output file. */ -extern char *lang_identify PROTO((void)); +extern const char *lang_identify PROTO((void)); + +/* Called by report_error_function to print out function name. + * Default may be overridden by language front-ends. */ +extern void (*print_error_function) PROTO((const char *)); /* Function to replace the DECL_LANG_SPECIFIC field of a DECL with a copy. */ extern void copy_lang_decl PROTO((tree)); -- cgit v1.2.1