From 2e8fa1dbf6388406a0b82df0ba4980424497707c Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Mon, 2 Jan 2017 01:24:54 +0800 Subject: [PATCH] glib_compat: add guint64 type --- qemu/include/glib_compat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/qemu/include/glib_compat.h b/qemu/include/glib_compat.h index 2ffa772d..b227d310 100644 --- a/qemu/include/glib_compat.h +++ b/qemu/include/glib_compat.h @@ -41,6 +41,7 @@ typedef void* gpointer; typedef const void *gconstpointer; typedef int gint; typedef uint32_t guint32; +typedef uint64_t guint64; typedef unsigned int guint; typedef char gchar; typedef int gboolean;