diff options
author | Honggyu Kim <hong.gyu.kim@lge.com> | 2014-01-07 01:25:10 -0200 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2014-01-07 14:14:30 -0200 |
commit | e26167887817eaf9d6a4db73b96ca1dde47a7ac2 (patch) | |
tree | cc100f38ccba843b0b3b716bc5926c726b0d3ce8 /gdb/regcache.c | |
parent | bd1f77885b60e39e5a4125053ae2ae2a26244419 (diff) | |
download | binutils-gdb-e26167887817eaf9d6a4db73b96ca1dde47a7ac2.tar.gz |
Remove duplicated #include's from GDB
This patch simply removes duplicated #include statements in the gdb/
directory. If there are two duplicated #include statements, this patch
keeps the first #include and removes the second.
Those duplicates have been found by using the checkincludes.pl tool from
the Linux kernel and double checked manually once again if the #include
statements are affected by #ifdef macros.
2014-01-06 Honggyu Kim <hong.gyu.kim@lge.com>
* ada-lang.c: Remove duplicated include statements.
* alphabsd-nat.c: Ditto.
* amd64-darwin-tdep.c: Ditto.
* amd64fbsd-nat.c: Ditto.
* auto-load.c: Ditto.
* ax-gdb.c: Ditto.
* breakpoint.c: Ditto.
* dbxread.c: Ditto.
* fork-child.c: Ditto.
* gdb_usleep.c: Ditto.
* i386-darwin-tdep.c: Ditto.
* i386fbsd-nat.c: Ditto.
* infcmd.c: Ditto.
* inferior.c: Ditto.
* jv-lang.c: Ditto.
* linux-nat.c: Ditto.
* linux-tdep.c: Ditto.
* m68kbsd-nat.c: Ditto.
* m68klinux-nat.c: Ditto.
* microblaze-tdep.c: Ditto.
* mips-linux-tdep.c: Ditto.
* mn10300-tdep.c: Ditto.
* nto-tdep.c: Ditto.
* opencl-lang.c: Ditto.
* osdata.c: Ditto.
* printcmd.c: Ditto.
* regcache.c: Ditto.
* remote-m32r-sdi.c: Ditto.
* remote.c: Ditto.
* symfile.c: Ditto.
* symtab.c: Ditto.
* tilegx-linux-nat.c: Ditto.
* tilegx-tdep.c: Ditto.
* tracepoint.c: Ditto.
* valops.c: Ditto.
* vaxbsd-nat.c: Ditto.
* windows-nat.c: Ditto.
* xtensa-tdep.c: Ditto.
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r-- | gdb/regcache.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c index 876039d5191..6c5915b414e 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -26,7 +26,6 @@ #include "reggroups.h" #include "gdb_assert.h" #include <string.h> -#include "gdbcmd.h" /* For maintenanceprintlist. */ #include "observer.h" #include "exceptions.h" #include "remote.h" |