diff options
Diffstat (limited to 'arch/arm/bits/stdint.h')
| -rw-r--r-- | arch/arm/bits/stdint.h | 11 | 
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/arm/bits/stdint.h b/arch/arm/bits/stdint.h index 8e21a8cb..43d3d59d 100644 --- a/arch/arm/bits/stdint.h +++ b/arch/arm/bits/stdint.h @@ -1,17 +1,16 @@ -#define INT_FAST8_MIN   INT8_MIN +typedef int32_t int_fast16_t; +typedef int32_t int_fast32_t; +typedef uint32_t uint_fast16_t; +typedef uint32_t uint_fast32_t; +  #define INT_FAST16_MIN  INT32_MIN  #define INT_FAST32_MIN  INT32_MIN -#define INT_FAST64_MIN  INT64_MIN -#define INT_FAST8_MAX   INT8_MAX  #define INT_FAST16_MAX  INT32_MAX  #define INT_FAST32_MAX  INT32_MAX -#define INT_FAST64_MAX  INT64_MAX -#define UINT_FAST8_MAX  UINT8_MAX  #define UINT_FAST16_MAX UINT32_MAX  #define UINT_FAST32_MAX UINT32_MAX -#define UINT_FAST64_MAX UINT64_MAX  #define INTPTR_MIN      INT32_MIN  #define INTPTR_MAX      INT32_MAX  | 
