aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Herring <[email protected]>2017-05-23 14:00:02 -0500
committerRob Herring <[email protected]>2017-05-25 15:02:12 -0500
commit1dc1860602b99303049b0dc7072fd6b69f930974 (patch)
tree4078fa88e3aed68d2f550ef4146b900d701d02c6
parent151bd66080541d55c497145336d23cde4429f504 (diff)
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 <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Signed-off-by: Rob Herring <[email protected]>
-rw-r--r--src/util/ralloc.c5
1 files changed, 0 insertions, 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 <string.h>
#include <stdint.h>
-/* Android defines SIZE_MAX in limits.h, instead of the standard stdint.h */
-#ifdef ANDROID
-#include <limits.h>
-#endif
-
/* Some versions of MinGW are missing _vscprintf's declaration, although they
* still provide the symbol in the import library. */
#ifdef __MINGW32__