From: Gary Benson Date: Wed, 6 Aug 2014 12:23:59 +0000 (+0100) Subject: Remove fatal function and prototype X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;ds=sidebyside;h=7096e886259fad196b955ecaff9a61891281d117;p=binutils-gdb.git Remove fatal function and prototype This commit removes the now-unused fatal function and prototype. gdb/gdbserver/ChangeLog: * utils.h (fatal): Remove declaration. * utils.c (fatal): Remove function. --- diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 9400b8adb64..2b63ca3c170 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2014-08-28 Gary Benson + + * utils.h (fatal): Remove declaration. + * utils.c (fatal): Remove function. + 2014-08-28 Gary Benson * tracepoint.c (gdb_agent_init): Replace fatal with diff --git a/gdb/gdbserver/utils.c b/gdb/gdbserver/utils.c index 3aac3cd656f..0c2af05a9d3 100644 --- a/gdb/gdbserver/utils.c +++ b/gdb/gdbserver/utils.c @@ -90,25 +90,6 @@ verror (const char *string, va_list args) #endif } -/* Print an error message and exit reporting failure. - This is for a error that we cannot continue from. - STRING and ARG are passed to fprintf. */ - -/* VARARGS */ -void -fatal (const char *string,...) -{ - va_list args; - va_start (args, string); - fprintf (stderr, PREFIX); - vfprintf (stderr, string, args); - fprintf (stderr, "\n"); - va_end (args); - exit (1); -} - -/* Print a warning message. */ - void vwarning (const char *string, va_list args) { diff --git a/gdb/gdbserver/utils.h b/gdb/gdbserver/utils.h index cdd80df145c..9732cbd7d2d 100644 --- a/gdb/gdbserver/utils.h +++ b/gdb/gdbserver/utils.h @@ -19,7 +19,6 @@ #ifndef UTILS_H #define UTILS_H -void fatal (const char *string,...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 2); char *paddress (CORE_ADDR addr); char *pfildes (gdb_fildes_t fd);