Romain Malmain 7f468ebba6
Second round of cleanups (#83)
* get rid of as many extern / function definition in QEMU codebase.

* mostly moved cpu / gdb related code.

* move qemu snapshot code in dedicated files.
2024-08-14 10:28:47 +02:00

8 lines
137 B
C

#include "qemu/osdep.h"
#include "libafl/utils.h"
uintptr_t libafl_qemu_host_page_size(void)
{
return qemu_real_host_page_size();
}