From 1dc1860602b99303049b0dc7072fd6b69f930974 Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Tue, 23 May 2017 14:00:02 -0500 Subject: [PATCH] util: remove unneeded Android ifdef from ralloc.c SIZE_MAX has been defined in stdint.h on Android since 2013, so this ifdef is no longer needed. Reviewed-by: Ian Romanick Reviewed-by: Emil Velikov Signed-off-by: Rob Herring --- src/util/ralloc.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/util/ralloc.c b/src/util/ralloc.c index 953f36e6bcd..821ee72fe8d 100644 --- a/src/util/ralloc.c +++ b/src/util/ralloc.c @@ -28,11 +28,6 @@ #include #include -/* Android defines SIZE_MAX in limits.h, instead of the standard stdint.h */ -#ifdef ANDROID -#include -#endif - /* Some versions of MinGW are missing _vscprintf's declaration, although they * still provide the symbol in the import library. */ #ifdef __MINGW32__ -- 2.30.2