From 80916a3613c05b651eaab005caeb96bd80664d0f Mon Sep 17 00:00:00 2001 From: David Carlier Date: Sat, 25 Apr 2020 18:13:11 +0100 Subject: [PATCH] Android supports arc4 api. --- include/types.h | 4 ++-- libdislocator/libdislocator.so.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/types.h b/include/types.h index f2a12953..a204294f 100644 --- a/include/types.h +++ b/include/types.h @@ -108,7 +108,7 @@ typedef int64_t s64; }) #ifdef AFL_LLVM_PASS -#if defined(__linux__) +#if defined(__linux__) || !defined(__ANDROID__) #define AFL_SR(s) (srandom(s)) #define AFL_R(x) (random() % (x)) #else @@ -116,7 +116,7 @@ typedef int64_t s64; #define AFL_R(x) (arc4random_uniform(x)) #endif #else -#if defined(__linux__) +#if defined(__linux__) || !defined(__ANDROID__) #define SR(s) (srandom(s)) #define R(x) (random() % (x)) #else diff --git a/libdislocator/libdislocator.so.c b/libdislocator/libdislocator.so.c index 6c8916d6..73ddc292 100644 --- a/libdislocator/libdislocator.so.c +++ b/libdislocator/libdislocator.so.c @@ -37,7 +37,7 @@ #include #endif -#ifdef __linux__ +#if defined(__linux__) && !defined(__ANDROID__) #include #include #ifdef __NR_getrandom