From: Alon Levy Date: Mon, 14 Mar 2011 22:18:02 +0000 (+0200) Subject: qemu-thread.h: include inttypes.h X-Git-Tag: v0.15.0-rc0~596 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=65097429ae1929c0c2da5577f6510a1eac82bd7a;p=thirdparty%2Fqemu.git qemu-thread.h: include inttypes.h 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). --- diff --git a/qemu-thread.h b/qemu-thread.h index edc7ab68589..0a73d505249 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;