From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32257 invoked by alias); 14 Jan 2019 21:45:41 -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 32238 invoked by uid 89); 14 Jan 2019 21:45:41 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-22.9 required=5.0 tests=BAYES_00,BODY_8BITS,GARBLED_BODY,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 spammy=liberty, Hx-languages-length:769, HContent-Transfer-Encoding:8bit X-HELO: smtp.polymtl.ca Received: from smtp.polymtl.ca (HELO smtp.polymtl.ca) (132.207.4.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 14 Jan 2019 21:45:37 +0000 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id x0ELjUhS032063 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Mon, 14 Jan 2019 16:45:35 -0500 Received: by simark.ca (Postfix, from userid 112) id 5CA801E7B3; Mon, 14 Jan 2019 16:45:30 -0500 (EST) Received: from simark.ca (localhost [127.0.0.1]) by simark.ca (Postfix) with ESMTP id DE9BF1E077; Mon, 14 Jan 2019 16:45:29 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Mon, 14 Jan 2019 21:45:00 -0000 From: Simon Marchi To: =?UTF-8?Q?=D0=9F=D0=B0=D0=B2=D0=B5=D0=BB_=D0=9A=D1=80=D1=8E=D0=BA?= =?UTF-8?Q?=D0=BE=D0=B2?= Cc: gdb-patches@sourceware.org, binutils@sourceware.org Subject: Re: [PATCH] Include to dis-asm.h to get strchr declaration In-Reply-To: References: Message-ID: <1da4814ae31a668a24b80e162f5941a3@polymtl.ca> X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.3.6 X-IsSubscribed: yes X-SW-Source: 2019-01/txt/msg00338.txt.bz2 On 2019-01-11 04:47, Павел Крюков wrote: > Include to dis-asm.h to get strchr declaration > > include/Changelog: > 2019-01-11 Pavel I. Kryukov > > * dis-asm.h: include > > diff --git a/include/dis-asm.h b/include/dis-asm.h > index 77b9e61..02c7214 100644 > --- a/include/dis-asm.h > +++ b/include/dis-asm.h > @@ -32,6 +32,7 @@ extern "C" { > #endif > > #include > +#include > #include "bfd.h" > > typedef int (*fprintf_ftype) (void *, const char*, ...) > ATTRIBUTE_FPTR_PRINTF_2; [Adding binutils@ in CC.] I took the liberty of pushing this patch which touches code in include/, since it seemed obvious enough to me. Simon