From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 105271 invoked by alias); 11 Jan 2019 09:47:56 -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 105258 invoked by uid 89); 11 Jan 2019 09:47:56 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00,FROM_EXCESS_BASE64,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=HX-Received:Fri, H*c:alternative, H*F:D*ru X-HELO: mail-it1-f171.google.com Received: from mail-it1-f171.google.com (HELO mail-it1-f171.google.com) (209.85.166.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 11 Jan 2019 09:47:53 +0000 Received: by mail-it1-f171.google.com with SMTP id b5so2182682iti.2 for ; Fri, 11 Jan 2019 01:47:53 -0800 (PST) MIME-Version: 1.0 From: =?UTF-8?B?0J/QsNCy0LXQuyDQmtGA0Y7QutC+0LI=?= Date: Fri, 11 Jan 2019 09:47:00 -0000 Message-ID: Subject: [PATCH] Include to dis-asm.h to get strchr declaration To: gdb-patches@sourceware.org Content-Type: text/plain; charset="UTF-8" X-SW-Source: 2019-01/txt/msg00239.txt.bz2 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;