diff options
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index 2465bf3..f9dc4f2 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1838,16 +1838,13 @@ fputs_highlighted (const char *str, const compiled_regex &highlight, gdb_puts (str, stream); } -/* Write character C to gdb_stdout using GDB's paging mechanism and return C. - May return nonlocally. */ - -int +void gdb_putc (int c) { return gdb_stdout->putc (c); } -int +void gdb_putc (int c, struct ui_file *stream) { return stream->putc (c); |