From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:41475) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIQNy-0003X9-Sz for qemu-devel@nongnu.org; Mon, 24 Oct 2011 15:40:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIQNy-0002RG-1T for qemu-devel@nongnu.org; Mon, 24 Oct 2011 15:40:38 -0400 From: Stefan Weil Date: Mon, 24 Oct 2011 21:39:43 +0200 Message-Id: <1319485183-9492-1-git-send-email-sw@weilnetz.de> Subject: [Qemu-devel] [PATCH] main-loop: Add missing include file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Stefan Weil stdint.h defines the POSIX data types and is needed for MinGW-w64 (and maybe other hosts). Signed-off-by: Stefan Weil --- main-loop.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/main-loop.c b/main-loop.c index bfecdb7..d9585f8 100644 --- a/main-loop.c +++ b/main-loop.c @@ -22,6 +22,7 @@ * THE SOFTWARE. */ #include "config-host.h" +#include /* uint8_t, ... */ #include #include #include -- 1.7.2.5