From patchwork Tue Aug 31 08:36:49 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Wang X-Patchwork-Id: 144691 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o7V8atwh008853 for ; Tue, 31 Aug 2010 08:36:55 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752241Ab0HaIgx (ORCPT ); Tue, 31 Aug 2010 04:36:53 -0400 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 Received: from [127.0.1.1] (dhcp-65-37.nay.redhat.com [10.66.65.37]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o7V8andZ022211; Tue, 31 Aug 2010 04:36:50 -0400 Subject: [PATCH kvm-unit-tests v2 1/8] Introduce some type definiations. To: zamsden@redhat.com, glommer@redhat.com, mtosatti@redhat.com, avi@redhat.com, kvm@vger.kernel.org From: Jason Wang Date: Tue, 31 Aug 2010 16:36:49 +0800 Message-ID: <20100831083649.10672.81313.stgit@FreeLancer> In-Reply-To: <20100831083216.10672.20413.stgit@FreeLancer> References: <20100831083216.10672.20413.stgit@FreeLancer> User-Agent: StGit/0.15 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 31 Aug 2010 08:36:55 +0000 (UTC) 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;