From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:32783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIQRE-0004Ps-8G for qemu-devel@nongnu.org; Mon, 24 Oct 2011 15:44:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIQRB-0003IP-To for qemu-devel@nongnu.org; Mon, 24 Oct 2011 15:43:59 -0400 Message-ID: <4EA5BFF9.8050707@codemonkey.ws> Date: Mon, 24 Oct 2011 14:43:53 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1319485183-9492-1-git-send-email-sw@weilnetz.de> In-Reply-To: <1319485183-9492-1-git-send-email-sw@weilnetz.de> 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: Stefan Weil Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org 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? Regards, Anthony Liguori > #include > #include > #include