tree.h (lang_identify): Constify a char*.

* 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*.

From-SVN: r28631
This commit is contained in:
Kaveh R. Ghazi 1999-08-09 23:38:41 +00:00 committed by Kaveh Ghazi
parent 63ac1f08b7
commit c95910595c
4 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,12 @@
Mon Aug 9 19:36:00 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* 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*.
Mon Aug 9 16:21:53 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* genpeep.c (main): Make generated file include "function.h".

View File

@ -75,7 +75,7 @@ lang_finish ()
{
}
char *
const char *
lang_identify ()
{
return "c";

View File

@ -682,7 +682,7 @@ lang_finish ()
{
}
char *
const char *
lang_identify ()
{
return "objc";

View File

@ -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));