diff options
author | Your Name <you@example.com> | 2021-11-19 18:06:15 +0000 |
---|---|---|
committer | Your Name <you@example.com> | 2021-11-19 18:06:15 +0000 |
commit | 4a2d944df3a3c3f00f46dd1a2f62cb7d977b28a0 (patch) | |
tree | 7c839ddb033014708e4c697ef388e83573b3a04a | |
parent | 8c9ce591e5aaaf2ce16322f6dd873bb0a2969a8c (diff) | |
download | afl++-4a2d944df3a3c3f00f46dd1a2f62cb7d977b28a0.tar.gz |
Compilation warning fixes
-rw-r--r-- | frida_mode/src/ctx/ctx_arm32.c | 1 | ||||
-rw-r--r-- | frida_mode/src/ctx/ctx_arm64.c | 1 | ||||
-rw-r--r-- | frida_mode/src/ctx/ctx_x86.c | 1 | ||||
-rw-r--r-- | frida_mode/src/persistent/persistent_x86.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/frida_mode/src/ctx/ctx_arm32.c b/frida_mode/src/ctx/ctx_arm32.c index 049b5548..28fc706b 100644 --- a/frida_mode/src/ctx/ctx_arm32.c +++ b/frida_mode/src/ctx/ctx_arm32.c @@ -1,6 +1,7 @@ #include "frida-gumjs.h" #include "ctx.h" +#include "util.h" #if defined(__arm__) diff --git a/frida_mode/src/ctx/ctx_arm64.c b/frida_mode/src/ctx/ctx_arm64.c index 01f321e3..63b6cf09 100644 --- a/frida_mode/src/ctx/ctx_arm64.c +++ b/frida_mode/src/ctx/ctx_arm64.c @@ -1,6 +1,7 @@ #include "frida-gumjs.h" #include "ctx.h" +#include "util.h" #if defined(__aarch64__) diff --git a/frida_mode/src/ctx/ctx_x86.c b/frida_mode/src/ctx/ctx_x86.c index abfeafc8..438e1fde 100644 --- a/frida_mode/src/ctx/ctx_x86.c +++ b/frida_mode/src/ctx/ctx_x86.c @@ -1,6 +1,7 @@ #include "frida-gumjs.h" #include "ctx.h" +#include "util.h" #if defined(__i386__) diff --git a/frida_mode/src/persistent/persistent_x86.c b/frida_mode/src/persistent/persistent_x86.c index 902274b3..5425b01b 100644 --- a/frida_mode/src/persistent/persistent_x86.c +++ b/frida_mode/src/persistent/persistent_x86.c @@ -4,6 +4,7 @@ #include "instrument.h" #include "persistent.h" +#include "util.h" #if defined(__i386__) |