From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30086 invoked by alias); 11 Jul 2011 18:58:13 -0000 Received: (qmail 30070 invoked by uid 22791); 11 Jul 2011 18:58:12 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 11 Jul 2011 18:57:59 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 7B3A82AC1AC; Mon, 11 Jul 2011 18:57:58 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Cc: toolchain-devel@blackfin.uclinux.org Subject: [PATCH] sim: dv-cfi: include stdbool.h Date: Mon, 11 Jul 2011 19:50:00 -0000 Message-Id: <1310410693-20883-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes 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 X-SW-Source: 2011-07/txt/msg00285.txt.bz2 The dv-cfi code uses the bool type but doesn't include the stdbool.h header. I didn't notice for Blackfin targets as the core Blackfin header will include stdbool.h, but most targets don't do this. Signed-off-by: Mike Frysinger 2011-07-11 Mike Frysinger * dv-cfi.c: Include stdbool.h. --- sim/common/dv-cfi.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/sim/common/dv-cfi.c b/sim/common/dv-cfi.c index 42d868c..a1ecaf9 100644 --- a/sim/common/dv-cfi.c +++ b/sim/common/dv-cfi.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #ifdef HAVE_SYS_MMAN_H #include -- 1.7.6