From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=51695 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q5gCL-0003FU-V7 for qemu-devel@nongnu.org; Fri, 01 Apr 2011 11:23:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q5gC8-0002Lk-Hj for qemu-devel@nongnu.org; Fri, 01 Apr 2011 11:23:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37300) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q5gC8-0002Lc-5C for qemu-devel@nongnu.org; Fri, 01 Apr 2011 11:23:28 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p31FNR9i013672 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 1 Apr 2011 11:23:27 -0400 Received: from playa.redhat.com (vpn-200-118.tlv.redhat.com [10.35.200.118]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p31FNJqw015269 for ; Fri, 1 Apr 2011 11:23:25 -0400 From: Alon Levy Date: Fri, 1 Apr 2011 18:23:10 +0300 Message-Id: <1301671398-3660-3-git-send-email-alevy@redhat.com> In-Reply-To: <1301671398-3660-1-git-send-email-alevy@redhat.com> References: <1301671398-3660-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH v25 02/10] 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.2