From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:59588) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIREe-0001EY-Kt for qemu-devel@nongnu.org; Mon, 24 Oct 2011 16:35:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIREd-0004yt-5u for qemu-devel@nongnu.org; Mon, 24 Oct 2011 16:35:04 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:45133) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIREc-0004wp-Vi for qemu-devel@nongnu.org; Mon, 24 Oct 2011 16:35:03 -0400 Message-ID: <4EA5CBC1.9020001@weilnetz.de> Date: Mon, 24 Oct 2011 22:34:09 +0200 From: Stefan Weil MIME-Version: 1.0 References: <1319485183-9492-1-git-send-email-sw@weilnetz.de> <4EA5BFF9.8050707@codemonkey.ws> In-Reply-To: <4EA5BFF9.8050707@codemonkey.ws> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] main-loop: Add missing include file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: QEMU Developers Am 24.10.2011 21:43, schrieb Anthony Liguori: > On 10/24/2011 02:39 PM, Stefan Weil wrote: >> 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, ... */ > > Any reason not to use qemu-common? I don't know any reason and forward your question to Paolo. Kind regards, Stefan W.