Merge pull request #661 from Manouchehri/dev

Fix missing Apple headers for afl_frida
This commit is contained in:
van Hauser
2020-12-26 22:09:03 +01:00
committed by GitHub

View File

@ -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