mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Fix Android Detection in lrzip_private.h
lrzip_private.h was checking for "ANDROID" but it should be __ANDROID__ lrzip now compiles just fine on android, it seems
This commit is contained in:
parent
79f505165b
commit
a8f0dc3a31
|
|
@ -144,7 +144,7 @@ extern int errno;
|
|||
#define unlikely(x) __builtin_expect(!!(x), 0)
|
||||
#define __maybe_unused __attribute__((unused))
|
||||
|
||||
#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(ANDROID) || defined(__APPLE__)
|
||||
#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__ANDROID__) || defined(__APPLE__)
|
||||
# define ffsll __builtin_ffsll
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue