diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-29 00:11:12 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-29 00:11:12 +0000 |
commit | ce27fb254cf9f800fb7f1a953eb8fa47522b9788 (patch) | |
tree | 12520f0b7edd8c6ab5c28f23c88c6fd7ccb0554a /gdb/p-lang.h | |
parent | 1a73b492f8dd36d2b0b3917acaf49d07de6fa581 (diff) | |
download | gdb-ce27fb254cf9f800fb7f1a953eb8fa47522b9788.zip gdb-ce27fb254cf9f800fb7f1a953eb8fa47522b9788.tar.gz gdb-ce27fb254cf9f800fb7f1a953eb8fa47522b9788.tar.bz2 |
2005-01-28 Andrew Cagney <cagney@gnu.org>
* language.h (struct language_defn): Make la_printstr's buffer
parameter a const bfd_byte.
* p-lang.h (pascal_printstr): Update function to match.
* ada-valprint.c (ada_printstr): Update function to match.
* scm-lang.c (scm_printstr): Update function to match.
* p-lang.c (pascal_printstr): Update function to match.
* ada-lang.h (ada_printstr): Update function to match.
* m2-lang.c (m2_printstr): Update function to match.
* objc-lang.c (objc_printstr): Update function to match.
* c-lang.h (c_printstr): Update function to match.
* f-lang.c (f_printstr): Update function to match.
* c-lang.c (c_printstr): Update function to match.
* language.c (unk_lang_printstr): Update function to match.
Diffstat (limited to 'gdb/p-lang.h')
-rw-r--r-- | gdb/p-lang.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/p-lang.h b/gdb/p-lang.h index 39eb043..0f1ef81 100644 --- a/gdb/p-lang.h +++ b/gdb/p-lang.h @@ -43,7 +43,8 @@ extern int extern void pascal_printchar (int, struct ui_file *); -extern void pascal_printstr (struct ui_file *, char *, unsigned int, int, int); +extern void pascal_printstr (struct ui_file *, const bfd_byte *, + unsigned int, int, int); extern struct type *pascal_create_fundamental_type (struct objfile *, int); |