mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 02:35:00 +08:00
Move putchar_filtered() to utils.c.
This commit is contained in:
@ -1857,6 +1857,15 @@ putchar_unfiltered (int c)
|
||||
return c;
|
||||
}
|
||||
|
||||
/* Write character C to gdb_stdout using GDB's paging mechanism and return C.
|
||||
May return nonlocally. */
|
||||
|
||||
int
|
||||
putchar_filtered (int c)
|
||||
{
|
||||
return fputc_filtered (c, gdb_stdout);
|
||||
}
|
||||
|
||||
int
|
||||
fputc_unfiltered (int c, struct ui_file *stream)
|
||||
{
|
||||
|
Reference in New Issue
Block a user