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/cli/cli-utils.c | |
parent | 74c1b268c657a9845250bfd8d30ead960b38771b (diff) | |
download | binutils-d1f4cff847cd744be01b8f514ddfc5fedba3afc4.zip binutils-d1f4cff847cd744be01b8f514ddfc5fedba3afc4.tar.gz binutils-d1f4cff847cd744be01b8f514ddfc5fedba3afc4.tar.bz2 |
Move putchar_filtered() to utils.c.
Diffstat (limited to 'gdb/cli/cli-utils.c')
-rw-r--r-- | gdb/cli/cli-utils.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/cli/cli-utils.c b/gdb/cli/cli-utils.c index 29019ec..396d6ea 100644 --- a/gdb/cli/cli-utils.c +++ b/gdb/cli/cli-utils.c @@ -19,11 +19,3 @@ #include "defs.h" #include "cli/cli-utils.h" -/* 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); -} |