From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=60640 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q2NzP-0001LF-TL for qemu-devel@nongnu.org; Wed, 23 Mar 2011 09:20:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q2NzE-0001cD-OZ for qemu-devel@nongnu.org; Wed, 23 Mar 2011 09:20:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10207) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q2NzE-0001bt-EN for qemu-devel@nongnu.org; Wed, 23 Mar 2011 09:20:32 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p2NDKVO9030605 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 23 Mar 2011 09:20:31 -0400 Received: from playa.tlv.redhat.com (dhcp-3-110.tlv.redhat.com [10.35.3.110]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p2NDKRXh028743 for ; Wed, 23 Mar 2011 09:20:30 -0400 From: Alon Levy Date: Wed, 23 Mar 2011 15:19:44 +0200 Message-Id: <1300886393-2799-3-git-send-email-alevy@redhat.com> In-Reply-To: <1300886393-2799-1-git-send-email-alevy@redhat.com> References: <1300886393-2799-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH v23 02/11] qemu-thread.h: include inttypes.h List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org qemu-thread.h relies on uint64_t being defined, but doesn't include inttypes.h explicitly. This makes it easier to use it from vscclient (part of libcacard). --- qemu-thread.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/qemu-thread.h b/qemu-thread.h index edc7ab6..0a73d50 100644 --- a/qemu-thread.h +++ b/qemu-thread.h @@ -1,6 +1,8 @@ #ifndef __QEMU_THREAD_H #define __QEMU_THREAD_H 1 +#include + typedef struct QemuMutex QemuMutex; typedef struct QemuCond QemuCond; typedef struct QemuThread QemuThread; -- 1.7.4.1