From patchwork Tue Jun 17 18:57:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 1540 Received: (qmail 12378 invoked by alias); 17 Jun 2014 18:58:04 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 12364 invoked by uid 89); 17 Jun 2014 18:58:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.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 ESMTP; Tue, 17 Jun 2014 18:58:02 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5HIw1S7023424 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Tue, 17 Jun 2014 14:58:01 -0400 Received: from barimba.redhat.com (ovpn-113-103.phx2.redhat.com [10.3.113.103]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s5HIw0v0006608; Tue, 17 Jun 2014 14:58:00 -0400 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [FYI] remove redundant savestring declaration Date: Tue, 17 Jun 2014 12:57:58 -0600 Message-Id: <1403031478-1219-1-git-send-email-tromey@redhat.com> I happened to notice that savestring is still declared in utils.h, despite the fact that it was moved to common/ a while back. This patch removes the redundant declaration. Tested by rebuilding. I'm committing this as obvious. 2014-06-17 Tom Tromey * utils.h (savestring): Remove declaration. --- gdb/ChangeLog | 4 ++++ gdb/utils.h | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gdb/utils.h b/gdb/utils.h index 0eba8ae..6e767dc 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -31,8 +31,6 @@ extern void initialize_utils (void); extern int sevenbit_strings; -extern char *savestring (const char *, size_t); - extern int strcmp_iw (const char *, const char *); extern int strcmp_iw_ordered (const char *, const char *);