diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2016-11-26 22:02:56 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2016-11-26 22:03:18 -0500 |
commit | 7f904c28f5cd2dc91a118ae6169d6993aaf71f63 (patch) | |
tree | 9456ebef8c3769253ee2c0a22fe43381404ed6d2 /gdb/ui-out.h | |
parent | 058467371921957ac532ffe0905ffa477f47018e (diff) | |
download | binutils-gdb-7f904c28f5cd2dc91a118ae6169d6993aaf71f63.tar.gz |
Remove unused functions and declarations
gdb/ChangeLog:
* ui-out.c (_initialize_ui_out): Remove.
(ui_out_set_flags): Remove.
(ui_out_clear_flags): Remove.
* ui-out.h (ui_out_begin_cleanup_end): Remove.
(ui_out_begin_cleanup_end): Remove.
(ui_out_set_flags): Remove.
(ui_out_clear_flags): Remove.
* mi/mi-out.c (_initialize_mi_out): Remove.
(mi_out_buffered): Remove.
* mi/mi-out.h (mi_out_buffered): Remove.
Diffstat (limited to 'gdb/ui-out.h')
-rw-r--r-- | gdb/ui-out.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/ui-out.h b/gdb/ui-out.h index a64160148f8..936ab665fa8 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -69,10 +69,6 @@ extern void ui_out_begin (struct ui_out *uiout, extern void ui_out_end (struct ui_out *uiout, enum ui_out_type type); -extern struct cleanup *ui_out_begin_cleanup_end (struct ui_out *uiout, - enum ui_out_type level_type, - const char *id); - /* A table can be considered a special tuple/list combination with the implied structure: ``table = { hdr = { header, ... } , body = [ { field, ... }, ... ] }''. If NR_ROWS is negative then there is at @@ -131,10 +127,6 @@ extern void ui_out_wrap_hint (struct ui_out *uiout, char *identstring); extern void ui_out_flush (struct ui_out *uiout); -extern int ui_out_set_flags (struct ui_out *uiout, int mask); - -extern int ui_out_clear_flags (struct ui_out *uiout, int mask); - extern int ui_out_get_verblvl (struct ui_out *uiout); extern int ui_out_test_flags (struct ui_out *uiout, int mask); |