Don't hide the log2 macro behind an Android-only macro

This commit is contained in:
Chris Robinson
2017-10-07 14:39:41 -07:00
parent 296abf03de
commit 71ce90d083
+1 -1
View File
@@ -46,7 +46,7 @@
#define M_PI (3.14159265358979323846)
#endif
#if defined(__ANDROID__) && !(defined(_ISOC99_SOURCE) || (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 200112L))
#if !(defined(_ISOC99_SOURCE) || (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 200112L))
#define log2(x) (log(x) / log(2.0))
#endif