diff options
author | Your Name <you@example.com> | 2022-02-18 08:21:36 +0000 |
---|---|---|
committer | Your Name <you@example.com> | 2022-02-18 08:21:36 +0000 |
commit | fc7bf33fb144162ede0c2d56b91ad31143113f16 (patch) | |
tree | 9ffc1ca018245aa6533a9194da7c21a03c4e4a7c /frida_mode/include/module.h | |
parent | fcd06fa99ceeeb9769102357257be0c1e192641e (diff) | |
download | afl++-fc7bf33fb144162ede0c2d56b91ad31143113f16.tar.gz |
Reserved used address space on dlclose to prevent re-use
Diffstat (limited to 'frida_mode/include/module.h')
-rw-r--r-- | frida_mode/include/module.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/frida_mode/include/module.h b/frida_mode/include/module.h new file mode 100644 index 00000000..b66f7feb --- /dev/null +++ b/frida_mode/include/module.h @@ -0,0 +1,11 @@ +#ifndef _MODULE_H +#define _MODULE_H + +#include "frida-gumjs.h" + +void module_config(void); + +void module_init(void); + +#endif + |