diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-06-07 15:45:35 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-06-09 10:41:43 +0000 |
commit | bbbc0e244e35cdc159f559e9d47e5941a1b35745 (patch) | |
tree | e5147282b2cb3d97668659e1b91d2c0f3c26bda9 /dump.c | |
parent | 3294ce1893620aecf0d2a693c7177a0f84129422 (diff) |
w32: Fix broken build (missing include file)
dump.c was recently added to the code. It unconditionally
includes sys/procfs which is not available with MinGW (w32, w64).
It looks like this file is not needed at all (tested on Linux),
so I removed it completely.
Some other include statements are also redundant because they are
already included in qemu-common, therefore they were removed, too.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -12,10 +12,7 @@ */ #include "qemu-common.h" -#include <unistd.h> #include "elf.h" -#include <sys/procfs.h> -#include <glib.h> #include "cpu.h" #include "cpu-all.h" #include "targphys.h" @@ -23,7 +20,6 @@ #include "kvm.h" #include "dump.h" #include "sysemu.h" -#include "bswap.h" #include "memory_mapping.h" #include "error.h" #include "qmp-commands.h" |