From f4be851b0e77fb21e1d3cc7a7672b9c5764a886a Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 12 Nov 2014 07:47:37 -0600 Subject: [PATCH] Remove the definition of INT_FAST32_MIN which is already defined in stdint.h (the correct location). From Lorenz Meier. --- arch/arm/include/limits.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/arch/arm/include/limits.h b/arch/arm/include/limits.h index 9502698fc0f..640db7e7bea 100644 --- a/arch/arm/include/limits.h +++ b/arch/arm/include/limits.h @@ -67,9 +67,6 @@ #define INT_MAX 2147483647 #define UINT_MAX 4294967295U -#define INT_FAST32_MIN INT_MIN -#define INT_FAST32_MAX INT_MAX - /* These change on 32-bit and 64-bit platforms */ #define LONG_MIN (-LONG_MAX - 1)