From: Marc-André Lureau Date: Thu, 8 Oct 2020 16:59:53 +0000 (+0400) Subject: mingw: fix error __USE_MINGW_ANSI_STDIO redefined X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=662770af7c6e8cf02aebdbf53cae6828ea1e49aa;p=qemu.git mingw: fix error __USE_MINGW_ANSI_STDIO redefined Always put osdep.h first, and remove redundant stdlib.h include. Signed-off-by: Marc-André Lureau Reviewed-by: Peter Maydell Reviewed-by: Stefan Weil Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20201008165953.884599-1-marcandre.lureau@redhat.com> Signed-off-by: Laurent Vivier --- diff --git a/migration/dirtyrate.c b/migration/dirtyrate.c index 68577ef250..47f761e67a 100644 --- a/migration/dirtyrate.c +++ b/migration/dirtyrate.c @@ -10,8 +10,9 @@ * See the COPYING file in the top-level directory. */ -#include #include "qemu/osdep.h" + +#include #include "qapi/error.h" #include "cpu.h" #include "qemu/config-file.h" diff --git a/tests/test-bitmap.c b/tests/test-bitmap.c index 2f5b71458a..8db4f67883 100644 --- a/tests/test-bitmap.c +++ b/tests/test-bitmap.c @@ -8,7 +8,6 @@ * Author: Peter Xu */ -#include #include "qemu/osdep.h" #include "qemu/bitmap.h"