From patchwork Fri Mar 2 16:47:38 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benjamin Kosnik X-Patchwork-Id: 144282 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id CFF48B6EEE for ; Sat, 3 Mar 2012 03:48:05 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1331311687; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: Mime-Version:Content-Type:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=jEONMDueHWBuf6miTu85aAQG2HI=; b=TBOORbXU4/sz3x+ Jf9D5nfHSZ8XWK49MRD/PRt6jB/w+sk4Q1+uLC2ysC3lkckI6kTwG6/2/WiH6V8w P/8Hp8qL9jrXc7BRXH0KTON5L2X1t22lNwmrerWIobGXnLQhD+LQ2J/cO3cijGqU zcFB2Hh41Co+jA5ybceVm9uIlW2M= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References:Mime-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=IoCTt6F/m8NOqPudTV1PCRsHfRgVTZVNSiv5pMwLSi9mpLIgkoj0CDKAjDQXIr rM6TcbXW/Vb306eRiS3pG3wEAjwPdXR0N0WSHRp60UdjhaVaqE+NDUdm7opT6Rto tCD6mB3A30Bl+U7eRO/Riw93wnndsBKR+dlUpPqjrlTmY=; Received: (qmail 22244 invoked by alias); 2 Mar 2012 16:47:58 -0000 Received: (qmail 22221 invoked by uid 22791); 2 Mar 2012 16:47:57 -0000 X-SWARE-Spam-Status: No, hits=-6.2 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_HI, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 02 Mar 2012 16:47:40 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q22Gldg1021761 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 2 Mar 2012 11:47:39 -0500 Received: from adair (ovpn-113-143.phx2.redhat.com [10.3.113.143]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q22Glc9l002240; Fri, 2 Mar 2012 11:47:39 -0500 Date: Fri, 2 Mar 2012 08:47:38 -0800 From: Benjamin De Kosnik To: jakub@redhat.com Cc: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: Re: [v3] libstdc++/51785 Message-ID: <20120302084738.52681eaf@adair> In-Reply-To: <20120301231139.1f6015ca@adair> References: <20120301231139.1f6015ca@adair> Mime-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org ... removes extra "extern." -benjamin 2012-03-02 Benjamin Kosnik * include/c_global/cstdio: Remove extraneous extern. * include/c_std/cstdio: Same. diff --git a/libstdc++-v3/include/c_global/cstdio b/libstdc++-v3/include/c_global/cstdio index d11743a..e648475 100644 --- a/libstdc++-v3/include/c_global/cstdio +++ b/libstdc++-v3/include/c_global/cstdio @@ -47,7 +47,7 @@ #define _GLIBCXX_CSTDIO 1 #ifndef _GLIBCXX_HAVE_GETS -extern "C" extern char* gets (char* __s) __attribute__((deprecated)); +extern "C" char* gets (char* __s) __attribute__((deprecated)); #endif // Get rid of those macros defined in in lieu of real functions. diff --git a/libstdc++-v3/include/c_std/cstdio b/libstdc++-v3/include/c_std/cstdio index 1588fc9..d4f4732 100644 --- a/libstdc++-v3/include/c_std/cstdio +++ b/libstdc++-v3/include/c_std/cstdio @@ -46,7 +46,7 @@ #include #ifndef _GLIBCXX_HAVE_GETS -extern "C" extern char* gets (char* __s) __attribute__((deprecated)); +extern "C" char* gets (char* __s) __attribute__((deprecated)); #endif // Get rid of those macros defined in in lieu of real functions.