Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2005-09-20 23:33:58 +0400
committerJeff Johnston <jjohnstn@redhat.com>2005-09-20 23:33:58 +0400
commit17060817938e5b20141ccad0d6a2d1735b04db97 (patch)
tree0e02d56da4e348df6554b53c1009cb78a62a0e5d /newlib
parent1e1d1d3d7edf5a7313aadeb46b1d98b6013cd823 (diff)
2005-09-20 Shaun Jackman <sjackman@gmail.com>
* libc/include/stdint.h: Fix typo in names of LEAST macros.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/include/stdint.h24
2 files changed, 17 insertions, 12 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 094122cfc..c089ece6f 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-20 Shaun Jackman <sjackman@gmail.com>
+
+ * libc/include/stdint.h: Fix typo in names of
+ LEAST macros.
+
2005-09-20 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/rtems/include/inttypes.h: Moved to...
diff --git a/newlib/libc/include/stdint.h b/newlib/libc/include/stdint.h
index d108d05fd..3b872e426 100644
--- a/newlib/libc/include/stdint.h
+++ b/newlib/libc/include/stdint.h
@@ -179,9 +179,9 @@ typedef unsigned long uintptr_t;
#endif
#if __int_least8_t_defined
-#define INTLEAST8_MIN -128
-#define INTLEAST8_MAX 127
-#define UINTLEAST8_MAX 255
+#define INT_LEAST8_MIN -128
+#define INT_LEAST8_MAX 127
+#define UINT_LEAST8_MAX 255
#else
#error required type int_least8_t missing
#endif
@@ -193,9 +193,9 @@ typedef unsigned long uintptr_t;
#endif
#if __int_least16_t_defined
-#define INTLEAST16_MIN -32768
-#define INTLEAST16_MAX 32767
-#define UINTLEAST16_MAX 65535
+#define INT_LEAST16_MIN -32768
+#define INT_LEAST16_MAX 32767
+#define UINT_LEAST16_MAX 65535
#else
#error required type int_least16_t missing
#endif
@@ -207,9 +207,9 @@ typedef unsigned long uintptr_t;
#endif
#if __int_least32_t_defined
-#define INTLEAST32_MIN -2147483648
-#define INTLEAST32_MAX 2147483647
-#define UINTLEAST32_MAX 4294967295
+#define INT_LEAST32_MIN -2147483648
+#define INT_LEAST32_MAX 2147483647
+#define UINT_LEAST32_MAX 4294967295
#else
#error required type int_least32_t missing
#endif
@@ -221,9 +221,9 @@ typedef unsigned long uintptr_t;
#endif
#if __int_least64_t_defined
-#define INTLEAST64_MIN -9223372036854775808
-#define INTLEAST64_MAX 9223372036854775807
-#define UINTLEAST64_MAX 18446744073709551615
+#define INT_LEAST64_MIN -9223372036854775808
+#define INT_LEAST64_MAX 9223372036854775807
+#define UINT_LEAST64_MAX 18446744073709551615
#endif
/* This must match size_t in stddef.h, currently long unsigned int */