diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-06 12:08:44 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-06 12:08:44 +0000 |
commit | 34c5b0f7761a2410c3fbe29b4b295e1ea61fc68c (patch) | |
tree | c65cc863cc00153b220c95248110c2faf81d3a13 /gcc/sdbout.h | |
parent | 16afa2a2c34bfe7998f26071842558dfa97f33c2 (diff) | |
download | gcc-34c5b0f7761a2410c3fbe29b4b295e1ea61fc68c.tar.gz |
* sdbout.c (struct sdb_file): NAME now const.
(sdbout_init): input_file_name now const.
(sdbout_start_new_source_file): FILENAME now const.
* sdbout.c (sdbout_init, sdbout_start_new_source_file): Reflect above.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34426 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.h')
-rw-r--r-- | gcc/sdbout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sdbout.h b/gcc/sdbout.h index 49581cd6073..41e4fda3e93 100644 --- a/gcc/sdbout.h +++ b/gcc/sdbout.h @@ -18,7 +18,7 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -extern void sdbout_init PARAMS ((FILE *, char*, tree)); +extern void sdbout_init PARAMS ((FILE *, const char *, tree)); extern void sdbout_begin_function PARAMS ((int)); extern void sdbout_end_function PARAMS ((int)); @@ -33,7 +33,7 @@ extern void sdbout_types PARAMS ((tree)); extern void sdbout_end_epilogue PARAMS ((void)); -extern void sdbout_start_new_source_file PARAMS ((char *)); +extern void sdbout_start_new_source_file PARAMS ((const char *)); extern void sdbout_resume_previous_source_file PARAMS ((void)); extern void sdbout_mark_begin_function PARAMS ((void)); |