diff options
author | Veronia Bahaa <veroniabahaa@gmail.com> | 2016-03-20 19:16:19 +0200 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:55:13 -0600 |
commit | 2c594eb97b17410fd65f3fed4af7355389ccb5b0 (patch) | |
tree | 9131d5e751c88007773d32b32a38ab835a7bb08c /hw/ppc/prep.c | |
parent | 89492b974896cf041e346da9ca03cfb5b94423e0 (diff) | |
download | hqemu-2c594eb97b17410fd65f3fed4af7355389ccb5b0.zip hqemu-2c594eb97b17410fd65f3fed4af7355389ccb5b0.tar.gz |
util: move declarations out of qemu-common.h
Move declarations out of qemu-common.h for functions declared in
utils/ files: e.g. include/qemu/path.h for utils/path.c.
Move inline functions out of qemu-common.h and into new files (e.g.
include/qemu/bcd.h)
Signed-off-by: Veronia Bahaa <veroniabahaa@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/ppc/prep.c')
-rw-r--r-- | hw/ppc/prep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc/prep.c b/hw/ppc/prep.c index 793b9ed..3ffb85e 100644 --- a/hw/ppc/prep.c +++ b/hw/ppc/prep.c @@ -46,6 +46,7 @@ #include "exec/address-spaces.h" #include "trace.h" #include "elf.h" +#include "qemu/cutils.h" /* SMP is not enabled, for now */ #define MAX_CPUS 1 |