Index: opcodes/or32-dis.c |
diff --git a/opcodes/or32-dis.c b/opcodes/or32-dis.c |
index a0dc92a731e3d031cd3a0c1016964c74a5197686..abb80bf028fa16e984e2061aec9fe5c9f0b09665 100644 |
--- a/opcodes/or32-dis.c |
+++ b/opcodes/or32-dis.c |
@@ -1,5 +1,5 @@ |
/* Instruction printing code for the OpenRISC 1000 |
- Copyright (C) 2002, 2005, 2007 Free Software Foundation, Inc. |
+ Copyright (C) 2002, 2005, 2007, 2012 Free Software Foundation, Inc. |
Contributed by Damjan Lampret <lampret@opencores.org>. |
Modified from a29k port. |
@@ -24,11 +24,10 @@ |
#define DEBUG 0 |
#endif |
+#include "sysdep.h" |
#include "dis-asm.h" |
#include "opcode/or32.h" |
#include "safe-ctype.h" |
-#include <string.h> |
-#include <stdlib.h> |
#define EXTEND29(x) ((x) & (unsigned long) 0x10000000 ? ((x) | (unsigned long) 0xf0000000) : ((x))) |