From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: [PATCH 3/8] test: add type bool Date: Wed, 28 Jul 2010 13:18:22 +0300 Message-ID: <1280312307-16686-4-git-send-email-avi@redhat.com> References: <1280312307-16686-1-git-send-email-avi@redhat.com> To: Joerg Roedel , Marcelo Tosatti , kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:26661 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754512Ab0G1KS3 (ORCPT ); Wed, 28 Jul 2010 06:18:29 -0400 In-Reply-To: <1280312307-16686-1-git-send-email-avi@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: Signed-off-by: Avi Kivity --- kvm/test/lib/libcflat.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/kvm/test/lib/libcflat.h b/kvm/test/lib/libcflat.h index 2e2a8bf..d0d3df2 100644 --- a/kvm/test/lib/libcflat.h +++ b/kvm/test/lib/libcflat.h @@ -28,6 +28,10 @@ typedef unsigned u32; typedef unsigned long ulong; typedef unsigned long long u64; typedef unsigned long size_t; +typedef _Bool bool; + +#define true 1 +#define false 0 extern void exit(int code); extern void panic(char *fmt, ...); -- 1.7.1