summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/sal/mathconf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sal/mathconf.h b/include/sal/mathconf.h
index fefd213e3684..44adf8bc58ce 100644
--- a/include/sal/mathconf.h
+++ b/include/sal/mathconf.h
@@ -72,7 +72,7 @@ extern "C" {
#define SAL_MATH_FINITE(d) isfinite(d)
#elif defined( WNT)
#define SAL_MATH_FINITE(d) _finite(d)
-#elif defined LINUX || defined UNX
+#elif defined(ANDROID) || defined LINUX || defined UNX
#define SAL_MATH_FINITE(d) finite(d)
#else /* WNT, LINUX, UNX */
#error "SAL_MATH_FINITE not defined"