diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-01 12:18:47 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:24 -0600 |
commit | dcf1a2c8d2f5776796927d147f40214d23c818de (patch) | |
tree | ae0e553b000e0a12d62adf7428c5393bb78f736e /gdb/utils.h | |
parent | 830df12588cfa80be673e710bee22761752ead11 (diff) | |
download | fsf-binutils-gdb-dcf1a2c8d2f5776796927d147f40214d23c818de.zip fsf-binutils-gdb-dcf1a2c8d2f5776796927d147f40214d23c818de.tar.gz fsf-binutils-gdb-dcf1a2c8d2f5776796927d147f40214d23c818de.tar.bz2 |
Only have one API for unfiltered output
At the end of this series, the use of unfiltered output will be very
restricted -- only places that definitely need it will use it. To
this end, I thought it would be good to reduce the number of
_unfiltered APIs that are exposed. This patch changes gdb so that
only printf_unfiltered exists. (After this patch, the f* variants
still exist as well, but those will be removed later.)
Diffstat (limited to 'gdb/utils.h')
-rw-r--r-- | gdb/utils.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/utils.h b/gdb/utils.h index 2cd0cff..cd73af4 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -243,12 +243,8 @@ extern int fputc_unfiltered (int c, struct ui_file *); extern int putchar_filtered (int c); -extern int putchar_unfiltered (int c); - extern void puts_filtered (const char *); -extern void puts_unfiltered (const char *); - extern void puts_filtered_tabular (char *string, int width, int right); extern void vprintf_filtered (const char *, va_list) ATTRIBUTE_PRINTF (1, 0); |