diff options
author | David Manouchehri <david.manouchehri@riseup.net> | 2020-12-26 15:15:24 -0500 |
---|---|---|
committer | David Manouchehri <david.manouchehri@riseup.net> | 2020-12-26 15:32:22 -0500 |
commit | 159707f74ca094029651ab2ef3292ac17f3a7269 (patch) | |
tree | e9bf009c3b845dd857a4985d37ce672952ea6306 | |
parent | 4af0065f4a7518f7df8f8b49c40127e2e674a760 (diff) | |
download | afl++-159707f74ca094029651ab2ef3292ac17f3a7269.tar.gz |
Include Apple headers.
-rw-r--r-- | utils/afl_frida/afl-frida.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/afl_frida/afl-frida.c b/utils/afl_frida/afl-frida.c index 31bf8f25..09ce00ad 100644 --- a/utils/afl_frida/afl-frida.c +++ b/utils/afl_frida/afl-frida.c @@ -37,7 +37,10 @@ #include <sys/shm.h> #include <dlfcn.h> -#ifndef __APPLE__ +#ifdef __APPLE__ + #include <mach/mach.h> + #include <mach-o/dyld_images.h> +#else #include <sys/wait.h> #include <sys/personality.h> #endif |