about summary refs log tree commit diff
path: root/sysdeps/wordsize-64/inttypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/wordsize-64/inttypes.h')
-rw-r--r--sysdeps/wordsize-64/inttypes.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/sysdeps/wordsize-64/inttypes.h b/sysdeps/wordsize-64/inttypes.h
index a86e49c24f..663b7b1a8d 100644
--- a/sysdeps/wordsize-64/inttypes.h
+++ b/sysdeps/wordsize-64/inttypes.h
@@ -62,10 +62,10 @@ typedef int        int_least32_t;
 typedef long int   int_least64_t;
 
 /* Unsigned.  */
-typedef unsigned char       int_least8_t;
-typedef unsigned short int int_least16_t;
-typedef unsigned int       int_least32_t;
-typedef unsigned long int  int_least64_t;
+typedef unsigned char       uint_least8_t;
+typedef unsigned short int uint_least16_t;
+typedef unsigned int       uint_least32_t;
+typedef unsigned long int  uint_least64_t;
 
 
 /* Fast types.  */
@@ -77,10 +77,10 @@ typedef int        int_fast32_t;
 typedef long int   int_fast64_t;
 
 /* Unsigned.  */
-typedef unsigned char      int_fast8_t;
-typedef unsigned int      int_fast16_t;
-typedef unsigned int      int_fast32_t;
-typedef unsigned long int int_fast64_t;
+typedef unsigned char      uint_fast8_t;
+typedef unsigned int      uint_fast16_t;
+typedef unsigned int      uint_fast32_t;
+typedef unsigned long int uint_fast64_t;
 
 
 /* Limits of integral types.  */
@@ -122,21 +122,21 @@ typedef unsigned long int int_fast64_t;
 
 
 /* Minimum of fast signed integral types having a minimum size.  */
-#define INT_LEAST8_MIN		(-128)
-#define INT_LEAST16_MIN		(-2147483647-1)
-#define INT_LEAST32_MIN		(-2147483647-1)
-#define INT_LEAST64_MIN		(-9223372036854775807L-1)
+#define INT_FAST8_MIN		(-128)
+#define INT_FAST16_MIN		(-2147483647-1)
+#define INT_FAST32_MIN		(-2147483647-1)
+#define INT_FAST64_MIN		(-9223372036854775807L-1)
 /* Maximum of fast signed integral types having a minimum size.  */
-#define INT_LEAST8_MAX		(127)
-#define INT_LEAST16_MAX		(2147483647)
-#define INT_LEAST32_MAX		(2147483647)
-#define INT_LEAST64_MAX		(9223372036854775807L)
+#define INT_FAST8_MAX		(127)
+#define INT_FAST16_MAX		(2147483647)
+#define INT_FAST32_MAX		(2147483647)
+#define INT_FAST64_MAX		(9223372036854775807L)
 
 /* Maximum of fast unsigned integral types having a minimum size.  */
-#define UINT_LEAST8_MAX		(255U)
-#define UINT_LEAST16_MAX	(4294967295U)
-#define UINT_LEAST32_MAX	(4294967295U)
-#define UINT_LEAST64_MAX	(18446744073709551615uL)
+#define UINT_FAST8_MAX		(255U)
+#define UINT_FAST16_MAX		(4294967295U)
+#define UINT_FAST32_MAX		(4294967295U)
+#define UINT_FAST64_MAX		(18446744073709551615uL)
 
 
 /* Minimum for most efficient signed integral types.  */