Merge pull request #114 from danieldjewell/master

Fix Android Detection in lrzip_private.h
This commit is contained in:
Con Kolivas 2019-05-28 13:50:05 +10:00 committed by GitHub
commit edb357ecde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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