qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 08/19] Fix test-i386-fprem compilation


From: Pranith Kumar
Subject: [Qemu-devel] [PATCH 08/19] Fix test-i386-fprem compilation
Date: Thu, 1 Dec 2016 00:14:22 -0500

From: Marc-André Lureau <address@hidden>

This test doesn't depend on glib, and thus cannot use osdep.h.

Signed-off-by: Marc-André Lureau <address@hidden>
Signed-off-by: Pranith Kumar <address@hidden>
---
 tests/tcg/test-i386-fprem.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tests/tcg/test-i386-fprem.c b/tests/tcg/test-i386-fprem.c
index 1a2b144..a258362 100644
--- a/tests/tcg/test-i386-fprem.c
+++ b/tests/tcg/test-i386-fprem.c
@@ -23,7 +23,11 @@
  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "qemu/osdep.h"
+#include <stdint.h>
+#include <stdio.h>
+#include "qemu/compiler.h"
+
+#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
 
 /*
  * Inspired by <ieee754.h>'s union ieee854_long_double, but with single
-- 
2.10.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]