diff --git a/libafl/syx-snapshot/channel-buffer-writeback.c b/libafl/syx-snapshot/channel-buffer-writeback.c index 7a1af9ab55..eb02de05c9 100644 --- a/libafl/syx-snapshot/channel-buffer-writeback.c +++ b/libafl/syx-snapshot/channel-buffer-writeback.c @@ -1,7 +1,8 @@ #include "qemu/osdep.h" #include "migration/qemu-file.h" -#include "channel-buffer-writeback.h" + #include "../syx-misc.h" +#include "libafl/syx-snapshot/channel-buffer-writeback.h" QIOChannelBufferWriteback* qio_channel_buffer_writeback_new(size_t capacity, uint8_t* writeback_buf, size_t writeback_buf_capacity, size_t* writeback_buf_usage) { assert(writeback_buf != NULL); diff --git a/libafl/syx-snapshot/device-save.c b/libafl/syx-snapshot/device-save.c index 04054a8b78..e8d44fc323 100644 --- a/libafl/syx-snapshot/device-save.c +++ b/libafl/syx-snapshot/device-save.c @@ -1,11 +1,12 @@ #include "qemu/osdep.h" -#include "device-save.h" #include "migration/qemu-file.h" #include "io/channel-buffer.h" -#include "channel-buffer-writeback.h" #include "migration/vmstate.h" #include "qemu/main-loop.h" + #include "../syx-misc.h" +#include "libafl/syx-snapshot/channel-buffer-writeback.h" +#include "libafl/syx-snapshot/device-save.h" #include "migration/savevm.h" diff --git a/libafl/syx-snapshot/syx-cow-cache.c b/libafl/syx-snapshot/syx-cow-cache.c index 888868e9ed..3628c46ceb 100644 --- a/libafl/syx-snapshot/syx-cow-cache.c +++ b/libafl/syx-snapshot/syx-cow-cache.c @@ -1,4 +1,4 @@ -#include "syx-cow-cache.h" +#include "libafl/syx-snapshot/syx-cow-cache.h" #include "sysemu/block-backend.h" diff --git a/libafl/syx-snapshot/syx-snapshot.c b/libafl/syx-snapshot/syx-snapshot.c index 8f3f0288c4..cc4dd10479 100644 --- a/libafl/syx-snapshot/syx-snapshot.c +++ b/libafl/syx-snapshot/syx-snapshot.c @@ -8,8 +8,8 @@ #include "exec/ram_addr.h" #include "exec/exec-all.h" -#include "syx-snapshot.h" -#include "device-save.h" +#include "libafl/syx-snapshot/syx-snapshot.h" +#include "libafl/syx-snapshot/device-save.h" #define SYX_SNAPSHOT_LIST_INIT_SIZE 4096 #define SYX_SNAPSHOT_LIST_GROW_FACTOR 2