diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-01-31 03:46:23 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-01-31 03:46:23 +0000 |
commit | d1f4cff847cd744be01b8f514ddfc5fedba3afc4 (patch) | |
tree | 82ddf9cb99000244b8ecc3c166c06e03b3bd4f20 /gdb/defs.h | |
parent | 74c1b268c657a9845250bfd8d30ead960b38771b (diff) | |
download | gdb-d1f4cff847cd744be01b8f514ddfc5fedba3afc4.zip gdb-d1f4cff847cd744be01b8f514ddfc5fedba3afc4.tar.gz gdb-d1f4cff847cd744be01b8f514ddfc5fedba3afc4.tar.bz2 |
Move putchar_filtered() to utils.c.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -435,7 +435,8 @@ extern struct ui_file *gdb_stdtarg; #include "ui-file.h" -/* More generic printf like operations */ +/* More generic printf like operations. Filtered versions may return + non-locally on error. */ extern void fputs_filtered (const char *, struct ui_file *); @@ -445,6 +446,8 @@ extern int fputc_filtered (int c, struct ui_file *); 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 *); |