Commit c6a1c22ba68d1731dd3a593fe71e4399f080bd56
1 parent
b71e95fc
fixed invalid includes
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@830 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
7 additions
and
2 deletions
target-ppc/translate.c
... | ... | @@ -17,9 +17,14 @@ |
17 | 17 | * License along with this library; if not, write to the Free Software |
18 | 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | 19 | */ |
20 | -#include "dyngen-exec.h" | |
20 | +#include <stdarg.h> | |
21 | +#include <stdlib.h> | |
22 | +#include <stdio.h> | |
23 | +#include <string.h> | |
24 | +#include <inttypes.h> | |
25 | + | |
21 | 26 | #include "cpu.h" |
22 | -#include "exec.h" | |
27 | +#include "exec-all.h" | |
23 | 28 | #include "disas.h" |
24 | 29 | |
25 | 30 | //#define DO_SINGLE_STEP | ... | ... |