summaryrefslogtreecommitdiff
path: root/gdb/utils.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-01-01 12:18:47 -0700
committerTom Tromey <tom@tromey.com>2022-03-29 12:46:24 -0600
commitdcf1a2c8d2f5776796927d147f40214d23c818de (patch)
treeae0e553b000e0a12d62adf7428c5393bb78f736e /gdb/utils.h
parent830df12588cfa80be673e710bee22761752ead11 (diff)
downloadbinutils-gdb-dcf1a2c8d2f5776796927d147f40214d23c818de.tar.gz
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.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/utils.h b/gdb/utils.h
index 2cd0cff0766..cd73af4651a 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);