From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Wang Subject: [PATCH kvm-unit-tests v2 1/8] Introduce some type definiations. Date: Tue, 31 Aug 2010 16:36:49 +0800 Message-ID: <20100831083649.10672.81313.stgit@FreeLancer> References: <20100831083216.10672.20413.stgit@FreeLancer> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit To: zamsden@redhat.com, glommer@redhat.com, mtosatti@redhat.com, avi@redhat.com, kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:5253 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752105Ab0HaIgw (ORCPT ); Tue, 31 Aug 2010 04:36:52 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o7V8aqVC011433 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 31 Aug 2010 04:36:52 -0400 In-Reply-To: <20100831083216.10672.20413.stgit@FreeLancer> Sender: kvm-owner@vger.kernel.org List-ID: Signed-off-by: Jason Wang --- lib/libcflat.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/lib/libcflat.h b/lib/libcflat.h index d0d3df2..9cb90cf 100644 --- a/lib/libcflat.h +++ b/lib/libcflat.h @@ -23,10 +23,14 @@ #include typedef unsigned char u8; +typedef signed char s8; typedef unsigned short u16; +typedef signed short s16; typedef unsigned u32; +typedef signed s32; typedef unsigned long ulong; typedef unsigned long long u64; +typedef signed long long s64; typedef unsigned long size_t; typedef _Bool bool;