qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 1/2] disas/microblaze.c: Don't define TRUE or FALSE


From: Peter Maydell
Subject: [Qemu-devel] [PATCH 1/2] disas/microblaze.c: Don't define TRUE or FALSE
Date: Tue, 26 Jan 2016 18:05:30 +0000

Don't define TRUE and FALSE locally or manually include stdio.h;
instead use osdep.h which provides them.

This is a necessary prerequisite for moving to "everywhere includes
osdep.h", because otherwise there is a compile error due to the
redefinition of TRUE and FALSE.

Signed-off-by: Peter Maydell <address@hidden>
---
 disas/microblaze.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/disas/microblaze.c b/disas/microblaze.c
index 5d15907..91b30ac 100644
--- a/disas/microblaze.c
+++ b/disas/microblaze.c
@@ -33,13 +33,10 @@ along with this program; if not, see 
<http://www.gnu.org/licenses/>. */
  */
 
 
-#include <stdio.h>
+#include "qemu/osdep.h"
 #define STATIC_TABLE
 #define DEFINE_TABLE
 
-#define TRUE   1
-#define FALSE  0
-
 #ifndef MICROBLAZE_OPC
 #define MICROBLAZE_OPC
 /* Assembler instructions for Xilinx's microblaze processor
-- 
1.9.1




reply via email to

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