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.)
This commit is contained in:
parent
830df12588
commit
dcf1a2c8d2
4 changed files with 3 additions and 27 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue