2005-01-14 Andrew Cagney <cagney@gnu.org>

* utils.c (error_output_message): Delete function.
	* defs.h (error_output_message): Delete declaration.
This commit is contained in:
Andrew Cagney 2005-01-14 21:34:36 +00:00
parent 05ff989b0b
commit 22e9b0f12e
3 changed files with 3 additions and 17 deletions

View file

@ -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)
{