aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-01-14 21:34:36 +0000
committerAndrew Cagney <cagney@redhat.com>2005-01-14 21:34:36 +0000
commit22e9b0f12e97492fdffa9f212e61d877ffdb1030 (patch)
treebceda1e0855e6ab9ac63198da0d0a904d80f7c8f /gdb/utils.c
parent05ff989b0b012d3c83f5908dd9750e01a74cc3de (diff)
downloadgdb-22e9b0f12e97492fdffa9f212e61d877ffdb1030.zip
gdb-22e9b0f12e97492fdffa9f212e61d877ffdb1030.tar.gz
gdb-22e9b0f12e97492fdffa9f212e61d877ffdb1030.tar.bz2
2005-01-14 Andrew Cagney <cagney@gnu.org>
* utils.c (error_output_message): Delete function. * defs.h (error_output_message): Delete declaration.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index a7eea61..08dfdd4 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -641,20 +641,6 @@ fatal (const char *string, ...)
va_end (args);
}
-/* Output an error message including any pre-print text to gdb_stderr. */
-void
-error_output_message (char *pre_print, char *msg)
-{
- target_terminal_ours ();
- wrap_here (""); /* Force out any buffered output */
- gdb_flush (gdb_stdout);
- annotate_error_begin ();
- if (pre_print)
- fputs_filtered (pre_print, gdb_stderr);
- fputs_filtered (msg, gdb_stderr);
- fprintf_filtered (gdb_stderr, "\n");
-}
-
NORETURN void
error_stream (struct ui_file *stream)
{