
* get rid of as many extern / function definition in QEMU codebase. * mostly moved cpu / gdb related code. * move qemu snapshot code in dedicated files.
8 lines
137 B
C
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();
|
|
}
|