[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v22 02/11] qemu-thread.h: include inttypes.h
From: |
Alon Levy |
Subject: |
[Qemu-devel] [PATCH v22 02/11] qemu-thread.h: include inttypes.h |
Date: |
Tue, 22 Mar 2011 00:07:17 +0200 |
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 <inttypes.h>
+
typedef struct QemuMutex QemuMutex;
typedef struct QemuCond QemuCond;
typedef struct QemuThread QemuThread;
--
1.7.4.1
- [Qemu-devel] [PATCH v22 00/11] usb-ccid, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 01/11] trace: move trace objects from Makefile to Makefile.objs, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 02/11] qemu-thread.h: include inttypes.h,
Alon Levy <=
- [Qemu-devel] [PATCH v22 04/11] introduce libcacard/vscard_common.h, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 03/11] usb-ccid: add CCID bus, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 05/11] ccid: add passthru card device, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 09/11] libcacard: add docs, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 07/11] libcacard: add vscclient, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 08/11] libcacard: add passthru, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 11/11] ccid: add docs, Alon Levy, 2011/03/21
- [Qemu-devel] [PATCH v22 06/11] libcacard: initial commit, Alon Levy, 2011/03/21