From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34756) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXFVK-00007e-Q1 for qemu-devel@nongnu.org; Thu, 25 Sep 2014 16:19:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XXFVC-0004tO-Vl for qemu-devel@nongnu.org; Thu, 25 Sep 2014 16:19:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:62566) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXFVC-0004sr-P7 for qemu-devel@nongnu.org; Thu, 25 Sep 2014 16:18:58 -0400 From: Eduardo Habkost Date: Thu, 25 Sep 2014 17:18:22 -0300 Message-Id: <1411676309-20218-4-git-send-email-ehabkost@redhat.com> In-Reply-To: <1411676309-20218-1-git-send-email-ehabkost@redhat.com> References: <1411676309-20218-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [RFC 03/10] bitmap.h: Don't include qemu-common.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Paolo Bonzini This will avoid unexpected circular header dependencies in the future. Signed-off-by: Eduardo Habkost --- include/qemu/bitmap.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/qemu/bitmap.h b/include/qemu/bitmap.h index 1babd5d..8c50d70 100644 --- a/include/qemu/bitmap.h +++ b/include/qemu/bitmap.h @@ -12,7 +12,10 @@ #ifndef BITMAP_H #define BITMAP_H -#include "qemu-common.h" +#include +#include + +#include "qemu/osdep.h" #include "qemu/bitops.h" /* -- 1.9.3