diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-09-20 19:33:58 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-09-20 19:33:58 +0000 |
commit | 17060817938e5b20141ccad0d6a2d1735b04db97 (patch) | |
tree | 0e02d56da4e348df6554b53c1009cb78a62a0e5d /newlib/libc | |
parent | 1e1d1d3d7edf5a7313aadeb46b1d98b6013cd823 (diff) | |
download | cygnal-17060817938e5b20141ccad0d6a2d1735b04db97.tar.gz cygnal-17060817938e5b20141ccad0d6a2d1735b04db97.tar.bz2 cygnal-17060817938e5b20141ccad0d6a2d1735b04db97.zip |
2005-09-20 Shaun Jackman <sjackman@gmail.com>
* libc/include/stdint.h: Fix typo in names of
LEAST macros.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/stdint.h | 24 |
1 files changed, 12 insertions, 12 deletions
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 */ |