diff options
author | WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> | 2021-04-28 18:26:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 19:26:19 +0200 |
commit | 3a0d4fe0d0a585d152a59ca4601d1981cedbf113 (patch) | |
tree | e97c8c7662cb4588df48fe040b2ddde866d2f142 /frida_mode/include/complog.h | |
parent | f112357e6165b583924b9b4e44b5b6ef522f722f (diff) | |
download | afl++-3a0d4fe0d0a585d152a59ca4601d1981cedbf113.tar.gz |
Bumped warnings up to the max and fixed remaining issues (#890)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/include/complog.h')
-rw-r--r-- | frida_mode/include/complog.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frida_mode/include/complog.h b/frida_mode/include/complog.h index 094b7b93..1c1adb6d 100644 --- a/frida_mode/include/complog.h +++ b/frida_mode/include/complog.h @@ -1,3 +1,6 @@ +#ifndef _COMPLOG_H +#define _COMPLOG_H + extern struct cmp_map *__afl_cmp_map; void complog_init(void); @@ -7,3 +10,5 @@ void complog_instrument(const cs_insn *instr, GumStalkerIterator *iterator); gboolean complog_is_readable(void *addr, size_t size); +#endif + |