From a725537f72878646f3f105fdf9ad8d6f97d362b8 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Wed, 27 Feb 2019 16:32:34 +0100 Subject: [PATCH] ARM: Define LONG_MIN etc. * include/stdint.h: Define LONG_MIN etc for ARM. --- include/stdint.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/stdint.h b/include/stdint.h index 8b8994e3..80f55e24 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -85,7 +85,8 @@ typedef unsigned uintmax_t; #define INT_MIN -2147483648 #define INT_MAX 2147483647 -#if __i386__ + +#if __i386__ || __arm__ #define LONG_MIN INT_MIN #define LONG_MAX INT_MAX #define UINT_MAX UINT32_MAX