From patchwork Fri Apr 1 15:23:10 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alon Levy X-Patchwork-Id: 89297 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by ozlabs.org (Postfix) with ESMTP id 305EDB6F94 for ; Sat, 2 Apr 2011 02:38:33 +1100 (EST) Received: from localhost ([127.0.0.1]:37224 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q5gGr-0005Z5-Ec for incoming@patchwork.ozlabs.org; Fri, 01 Apr 2011 11:28:21 -0400 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 To: qemu-devel@nongnu.org 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> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v25 02/10] qemu-thread.h: include inttypes.h X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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;