ARM: Define LONG_MIN etc.

* include/stdint.h: Define LONG_MIN etc for ARM.
This commit is contained in:
Danny Milosavljevic 2019-02-27 16:32:34 +01:00 committed by Jan Nieuwenhuizen
parent eda0d8dca5
commit a725537f72
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 1 deletions

View File

@ -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