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/fork-child.c | |
parent | Fix missing-prototypes error for '_initialize_spu_nat' (diff) | |
download | binutils-gdb-e26167887817eaf9d6a4db73b96ca1dde47a7ac2.tar.gz binutils-gdb-e26167887817eaf9d6a4db73b96ca1dde47a7ac2.tar.bz2 binutils-gdb-e26167887817eaf9d6a4db73b96ca1dde47a7ac2.zip |
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/fork-child.c')
-rw-r--r-- | gdb/fork-child.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/fork-child.c b/gdb/fork-child.c index d4403b85923..6c42d2ed610 100644 --- a/gdb/fork-child.c +++ b/gdb/fork-child.c @@ -27,7 +27,6 @@ #include "gdb_wait.h" #include "gdb_vfork.h" #include "gdbcore.h" -#include "terminal.h" #include "gdbthread.h" #include "command.h" /* for dont_repeat () */ #include "gdbcmd.h" |