Remove fatal function and prototype
authorGary Benson <gbenson@redhat.com>
Wed, 6 Aug 2014 12:23:59 +0000 (13:23 +0100)
committerGary Benson <gbenson@redhat.com>
Thu, 28 Aug 2014 14:06:48 +0000 (15:06 +0100)
This commit removes the now-unused fatal function and prototype.

gdb/gdbserver/ChangeLog:

* utils.h (fatal): Remove declaration.
* utils.c (fatal): Remove function.

gdb/gdbserver/ChangeLog
gdb/gdbserver/utils.c
gdb/gdbserver/utils.h

index 9400b8adb64d82a379cf1f8ed4598af78d6f83bd..2b63ca3c170a591978c27554b9d52b64ab14334b 100644 (file)
@@ -1,3 +1,8 @@
+2014-08-28  Gary Benson  <gbenson@redhat.com>
+
+       * utils.h (fatal): Remove declaration.
+       * utils.c (fatal): Remove function.
+
 2014-08-28  Gary Benson  <gbenson@redhat.com>
 
        * tracepoint.c (gdb_agent_init): Replace fatal with
index 3aac3cd656f54e74dca9428db0b198dacafe275a..0c2af05a9d32581dda5f4b957ff458b5eefd965d 100644 (file)
@@ -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)
 {
index cdd80df145ca1b094a5e1bdfe6072b5926557823..9732cbd7d2d21ffd0deeadd19af55b90bda3a189 100644 (file)
@@ -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);