From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34722) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXFVF-00007Q-0u for qemu-devel@nongnu.org; Thu, 25 Sep 2014 16:19:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XXFV8-0004sx-HK for qemu-devel@nongnu.org; Thu, 25 Sep 2014 16:19:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28163) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXFV8-0004se-9o for qemu-devel@nongnu.org; Thu, 25 Sep 2014 16:18:54 -0400 From: Eduardo Habkost Date: Thu, 25 Sep 2014 17:18:20 -0300 Message-Id: <1411676309-20218-2-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 01/10] tests: Add missing include to test-bitops.c 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 The test code needs osdep.h for the ARRAY_SIZE macro. Signed-off-by: Eduardo Habkost --- tests/test-bitops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test-bitops.c b/tests/test-bitops.c index 8238eb5..47b5d3e 100644 --- a/tests/test-bitops.c +++ b/tests/test-bitops.c @@ -8,6 +8,7 @@ #include #include +#include "qemu/osdep.h" #include "qemu/bitops.h" typedef struct { -- 1.9.3