diff options
| author | David Carlier <devnexen@gmail.com> | 2021-10-16 12:44:25 +0100 |
|---|---|---|
| committer | David Carlier <devnexen@gmail.com> | 2021-10-16 15:30:58 +0100 |
| commit | c96fdfac01829a5f6a9e98968817d6b6588389b8 (patch) | |
| tree | ecc67fdd879cf485ebdac161f14de08fe5008be9 /frida_mode/src/seccomp/seccomp_socket.c | |
| parent | 8b1910e2689876c8ed4d0b9529296dc144692d35 (diff) | |
| download | afl++-c96fdfac01829a5f6a9e98968817d6b6588389b8.tar.gz | |
frida mode android build fix proposal.
also protecting seccomp the other way around in case it is ported in another platform supported by frida.
Diffstat (limited to 'frida_mode/src/seccomp/seccomp_socket.c')
| -rw-r--r-- | frida_mode/src/seccomp/seccomp_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/src/seccomp/seccomp_socket.c b/frida_mode/src/seccomp/seccomp_socket.c index fae95805..ef937420 100644 --- a/frida_mode/src/seccomp/seccomp_socket.c +++ b/frida_mode/src/seccomp/seccomp_socket.c @@ -1,4 +1,4 @@ -#ifndef __APPLE__ +#if defined(__linux__) && !defined(__ANDROID__) #include <stdio.h> #include <string.h> |
