From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30865 invoked by alias); 29 Jul 2014 15:11:20 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 8343 invoked by uid 89); 29 Jul 2014 14:37:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 29 Jul 2014 14:37:20 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s6TEbJbQ025337 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Tue, 29 Jul 2014 10:37:19 -0400 Received: from blade.nx (ovpn-116-90.ams2.redhat.com [10.36.116.90]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s6TEbHgM017898 for ; Tue, 29 Jul 2014 10:37:18 -0400 Received: from blade.nx (localhost [127.0.0.1]) by blade.nx (Postfix) with ESMTP id 5B1A22640D7 for ; Tue, 29 Jul 2014 15:37:17 +0100 (BST) From: Gary Benson To: gdb-patches@sourceware.org Subject: [PATCH 02/13] Move stdlib.h to common-defs.h Date: Tue, 29 Jul 2014 15:11:00 -0000 Message-Id: <1406644635-1011-3-git-send-email-gbenson@redhat.com> In-Reply-To: <1406644635-1011-1-git-send-email-gbenson@redhat.com> References: <1406644635-1011-1-git-send-email-gbenson@redhat.com> X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00734.txt.bz2 This commit moves the inclusion of stdlib.h to common-defs.h and removes all other inclusions. gdb/ 2014-07-28 Gary Benson * common/common-defs.h: Include stdlib.h. * defs.h: Do not include stdlib.h. * addrmap.c: Likewise. * bcache.c: Likewise. * common/buffer.c: Likewise. * common/common-utils.c: Likewise. * cp-name-parser.y: Likewise. * go32-nat.c: Likewise. * mn10300-linux-tdep.c: Likewise. * nat/linux-osdata.c: Likewise. * tui/tui.c: Likewise. * windows-nat.c: Likewise. gdb/gdbserver/ 2014-07-28 Gary Benson * server.h: Do not include stdlib.h. * inferiors.c: Likewise. * linux-low.c: Likewise. * regcache.c: Likewise. * spu-low.c: Likewise. * tracepoint.c: Likewise. * utils.c: Likewise. --- gdb/ChangeLog | 15 +++++++++++++++ gdb/addrmap.c | 3 --- gdb/bcache.c | 1 - gdb/common/buffer.c | 1 - gdb/common/common-defs.h | 1 + gdb/common/common-utils.c | 2 -- gdb/cp-name-parser.y | 1 - gdb/defs.h | 3 --- gdb/gdbserver/ChangeLog | 10 ++++++++++ gdb/gdbserver/inferiors.c | 1 - gdb/gdbserver/linux-low.c | 1 - gdb/gdbserver/regcache.c | 2 -- gdb/gdbserver/server.h | 1 - gdb/gdbserver/spu-low.c | 1 - gdb/gdbserver/tracepoint.c | 1 - gdb/gdbserver/utils.c | 1 - gdb/go32-nat.c | 1 - gdb/mn10300-linux-tdep.c | 2 -- gdb/nat/linux-osdata.c | 1 - gdb/tui/tui.c | 1 - gdb/windows-nat.c | 1 - 21 files changed, 26 insertions(+), 25 deletions(-) diff --git a/gdb/addrmap.c b/gdb/addrmap.c index c8fee38..c942c7b 100644 --- a/gdb/addrmap.c +++ b/gdb/addrmap.c @@ -18,9 +18,6 @@ along with this program. If not, see . */ #include "defs.h" - -#include - #include "splay-tree.h" #include "gdb_obstack.h" #include "addrmap.h" diff --git a/gdb/bcache.c b/gdb/bcache.c index 99e9184..0c87e2d 100644 --- a/gdb/bcache.c +++ b/gdb/bcache.c @@ -26,7 +26,6 @@ #include "gdb_assert.h" #include -#include /* The type used to hold a single bcache string. The user data is stored in d.data. Since it can be any type, it needs to have the diff --git a/gdb/common/buffer.c b/gdb/common/buffer.c index a50c890..c291b32 100644 --- a/gdb/common/buffer.c +++ b/gdb/common/buffer.c @@ -27,7 +27,6 @@ #include "buffer.h" #include "inttypes.h" -#include #include #include diff --git a/gdb/common/common-defs.h b/gdb/common/common-defs.h index 0fc7af5..ed95a36 100644 --- a/gdb/common/common-defs.h +++ b/gdb/common/common-defs.h @@ -28,5 +28,6 @@ #endif #include +#include #endif /* COMMON_DEFS_H */ diff --git a/gdb/common/common-utils.c b/gdb/common/common-utils.c index 41ef289..ab05c9f 100644 --- a/gdb/common/common-utils.c +++ b/gdb/common/common-utils.c @@ -26,8 +26,6 @@ #include "gdb_assert.h" #include -#include - /* The xmalloc() (libiberty.h) family of memory management routines. These are like the ISO-C malloc() family except that they implement diff --git a/gdb/cp-name-parser.y b/gdb/cp-name-parser.y index 6a9d13d..3199aff 100644 --- a/gdb/cp-name-parser.y +++ b/gdb/cp-name-parser.y @@ -31,7 +31,6 @@ #include "defs.h" -#include #include #include diff --git a/gdb/defs.h b/gdb/defs.h index 49e45b8..2e1e06b 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -597,9 +597,6 @@ enum gdb_osabi /* From other system libraries */ -#include - - #ifndef atof extern double atof (const char *); /* X3.159-1989 4.10.1.1 */ #endif diff --git a/gdb/gdbserver/inferiors.c b/gdb/gdbserver/inferiors.c index 48d7700..608a997 100644 --- a/gdb/gdbserver/inferiors.c +++ b/gdb/gdbserver/inferiors.c @@ -19,7 +19,6 @@ along with this program. If not, see . */ #include "server.h" -#include #include "gdbthread.h" #include "dll.h" diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 0b9353e..b599bef 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -31,7 +31,6 @@ #include #include #include -#include #include #include #include diff --git a/gdb/gdbserver/regcache.c b/gdb/gdbserver/regcache.c index bed10b4..5c973b1 100644 --- a/gdb/gdbserver/regcache.c +++ b/gdb/gdbserver/regcache.c @@ -21,8 +21,6 @@ #include "gdbthread.h" #include "tdesc.h" #include "rsp-low.h" - -#include #include #ifndef IN_PROCESS_AGENT diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h index 743a368..a15ba36 100644 --- a/gdb/gdbserver/server.h +++ b/gdb/gdbserver/server.h @@ -30,7 +30,6 @@ #include "version.h" #include -#include #ifdef HAVE_ERRNO_H #include #endif diff --git a/gdb/gdbserver/spu-low.c b/gdb/gdbserver/spu-low.c index 67ff147..ba2780b 100644 --- a/gdb/gdbserver/spu-low.c +++ b/gdb/gdbserver/spu-low.c @@ -24,7 +24,6 @@ #include #include #include -#include #include #include #include diff --git a/gdb/gdbserver/tracepoint.c b/gdb/gdbserver/tracepoint.c index 7c4b291..31be953 100644 --- a/gdb/gdbserver/tracepoint.c +++ b/gdb/gdbserver/tracepoint.c @@ -7110,7 +7110,6 @@ gdb_ust_init (void) #endif /* HAVE_UST */ #include -#include static void gdb_agent_remove_socket (void) diff --git a/gdb/gdbserver/utils.c b/gdb/gdbserver/utils.c index b87bcc9..a0febb1 100644 --- a/gdb/gdbserver/utils.c +++ b/gdb/gdbserver/utils.c @@ -18,7 +18,6 @@ #include "server.h" #include -#include #if HAVE_ERRNO_H #include #endif diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index 42133d6..a8c54fa 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -105,7 +105,6 @@ #include "cli/cli-utils.h" #include "inf-child.h" -#include #include #include #include diff --git a/gdb/mn10300-linux-tdep.c b/gdb/mn10300-linux-tdep.c index 4377463..1b72efa 100644 --- a/gdb/mn10300-linux-tdep.c +++ b/gdb/mn10300-linux-tdep.c @@ -33,8 +33,6 @@ #include "tramp-frame.h" #include "linux-tdep.h" -#include - /* Transliterated from ... */ #define MN10300_ELF_NGREG 28 #define MN10300_ELF_NFPREG 32 diff --git a/gdb/nat/linux-osdata.c b/gdb/nat/linux-osdata.c index dae637b..d9d1325 100644 --- a/gdb/nat/linux-osdata.c +++ b/gdb/nat/linux-osdata.c @@ -28,7 +28,6 @@ #include #include #include -#include #include #include #include diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 413ec20..7add8ba 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -38,7 +38,6 @@ #include "symtab.h" #include "source.h" -#include #include #include #include diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 3d101a1..5dcd520 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -35,7 +35,6 @@ #include #include #include -#include #include #include #include -- 1.7.1