2012-02-22 Joseph Myers <joseph@codesourcery.com>
+ Roland McGrath <roland@hack.frob.com>
+
+ [BZ #5461]
+ * manual/arith.texi (strtoll): Refer to LLONG_MAX and LLONG_MIN,
+ not LONG_LONG_MAX and LONG_LONG_MIN.
+ * manual/lang.texi (LONG_LONG_MIN): Document first as ISO
+ LLONG_MIN. Refer to LONG_LONG_MIN only as older GCC-specific
+ name.
+ (LONG_LONG_MAX, LLONG_MAX, ULONG_LONG_MAX, ULLONG_MAX): Likewise.
+
+2012-02-22 Joseph Myers <joseph@codesourcery.com>
[BZ #2547]
[BZ #11365]
* The following bugs are resolved with this release:
- 174, 350, 411, 2547, 2548, 3335, 4026, 4596, 4822, 5077, 5805, 5993, 6884,
- 6907, 9739, 9902, 10110, 10140, 10210, 11174, 11322, 11365, 11494, 12047,
- 13058, 13525, 13526, 13527, 13528, 13529, 13530, 13531, 13532, 13533,
- 13547, 13551, 13552, 13553, 13555, 13559, 13583, 13618, 13695, 13704
+ 174, 350, 411, 2547, 2548, 3335, 4026, 4596, 4822, 5077, 5461, 5805, 5993,
+ 6884, 6907, 9739, 9902, 10110, 10140, 10210, 11174, 11322, 11365, 11494,
+ 12047, 13058, 13525, 13526, 13527, 13528, 13529, 13530, 13531, 13532,
+ 13533, 13547, 13551, 13552, 13553, 13555, 13559, 13583, 13618, 13695,
+ 13704
* ISO C11 support:
@w{@code{signed long int}} and @code{unsigned long int}, respectively.
@comment limits.h
-@comment GNU
-@item LONG_LONG_MIN
+@comment ISO
+@item LLONG_MIN
This is the minimum value that can be represented by a @w{@code{signed
long long int}}. On most machines that the GNU C system runs on,
@w{@code{long long}} integers are 64-bit quantities.
@comment limits.h
-@comment GNU
-@item LONG_LONG_MAX
+@comment ISO
+@item LLONG_MAX
@comment limits.h
@comment ISO
-@itemx ULONG_LONG_MAX
+@itemx ULLONG_MAX
These are the maximum values that can be represented by a @code{signed
long long int} and @code{unsigned long long int}, respectively.
@comment limits.h
@comment GNU
+@item LONG_LONG_MIN
+@comment limits.h
+@comment GNU
+@itemx LONG_LONG_MAX
+@comment limits.h
+@comment GNU
+@itemx ULONG_LONG_MAX
+These are obsolete names for @code{LLONG_MIN}, @code{LLONG_MAX}, and
+@code{ULLONG_MAX}. They are only available if @code{_GNU_SOURCE} is
+defined (@pxref{Feature Test Macros}). In GCC versions prior to 3.0,
+these were the only names available.
+
+@comment limits.h
+@comment GNU
@item WCHAR_MAX
This is the maximum value that can be represented by a @code{wchar_t}.