Move print-utils.h to common-defs.h
authorGary Benson <gbenson@redhat.com>
Wed, 30 Jul 2014 15:14:21 +0000 (16:14 +0100)
committerGary Benson <gbenson@redhat.com>
Tue, 19 Aug 2014 09:07:19 +0000 (10:07 +0100)
This commit moves the inclusion of print-utils.h to common-defs.h
and removes all other inclusions.

gdb/ChangeLog:

* common/common-defs.h: Include print-utils.h.
* utils.h: Do not include print-utils.h.

gdb/gdbserver/ChangeLog:

* utils.h: Do not include print-utils.h.

gdb/ChangeLog
gdb/common/common-defs.h
gdb/gdbserver/ChangeLog
gdb/gdbserver/utils.h
gdb/utils.h

index 4c8b76b2b87bb059140c7570d62f20d2e43a9e36..bab7cf18fa2c29cde664be227b1cc5920b38887c 100644 (file)
@@ -1,3 +1,8 @@
+2014-08-19  Gary Benson  <gbenson@redhat.com>
+
+       * common/common-defs.h: Include print-utils.h.
+       * utils.h: Do not include print-utils.h.
+
 2014-08-19  Tom Tromey  <tromey@redhat.com>
            Gary Benson  <gbenson@redhat.com>
 
index 5543e4c56bd3438cda4092b0c80ef851db2ce740..66c0d2134e5dbd4145cbb0845128d2122e052b62 100644 (file)
@@ -43,5 +43,6 @@
 #include "gdb_assert.h"
 #include "errors.h"
 #include "common-types.h"
+#include "print-utils.h"
 
 #endif /* COMMON_DEFS_H */
index 81db69a6d87a264c17afbbd97f1d1ddeb30fc611..14b5a4f9407bff16505c3fd2facb7e03fad862f3 100644 (file)
@@ -1,3 +1,7 @@
+2014-08-19  Gary Benson  <gbenson@redhat.com>
+
+       * utils.h: Do not include print-utils.h.
+
 2014-08-19  Tom Tromey  <tromey@redhat.com>
            Gary Benson  <gbenson@redhat.com>
 
index a994f3827aa4938a5057eb76507fec9583d5e503..cdd80df145ca1b094a5e1bdfe6072b5926557823 100644 (file)
@@ -19,8 +19,6 @@
 #ifndef UTILS_H
 #define UTILS_H
 
-#include "print-utils.h"
-
 void fatal (const char *string,...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 2);
 char *paddress (CORE_ADDR addr);
 char *pfildes (gdb_fildes_t fd);
index 18a95a7740422be7d6145e10ba10f9ddb538837a..57a1c0ff7792d6057d508caf0cd29143262860bd 100644 (file)
@@ -23,7 +23,6 @@
 
 #include "cleanups.h"
 #include "exceptions.h"
-#include "print-utils.h"
 
 extern void initialize_utils (void);