about summary refs log tree commit diff
path: root/manual
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-02-22 21:04:27 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-22 21:04:27 +0000
commit7bb764bcb177f580e9f676680423ed3ddb13d8e7 (patch)
tree926aac000cf93fa61fce26084d3cf54de99de7fa /manual
parent6cbeae4719aeb3edb6143fe5dd6d2a5ab45c0248 (diff)
downloadglibc-7bb764bcb177f580e9f676680423ed3ddb13d8e7.tar.gz
glibc-7bb764bcb177f580e9f676680423ed3ddb13d8e7.tar.xz
glibc-7bb764bcb177f580e9f676680423ed3ddb13d8e7.zip
Prefer C99 names for long long limit macros.
Diffstat (limited to 'manual')
-rw-r--r--manual/arith.texi2
-rw-r--r--manual/lang.texi24
2 files changed, 20 insertions, 6 deletions
diff --git a/manual/arith.texi b/manual/arith.texi
index e160438938..e59da41c4b 100644
--- a/manual/arith.texi
+++ b/manual/arith.texi
@@ -2131,7 +2131,7 @@ larger range.
 
 If the string has valid syntax for an integer but the value is not
 representable because of overflow, @code{strtoll} returns either
-@code{LONG_LONG_MAX} or @code{LONG_LONG_MIN} (@pxref{Range of Type}), as
+@code{LLONG_MAX} or @code{LLONG_MIN} (@pxref{Range of Type}), as
 appropriate for the sign of the value.  It also sets @code{errno} to
 @code{ERANGE} to indicate there was overflow.
 
diff --git a/manual/lang.texi b/manual/lang.texi
index 9bc98710a8..b93ad5b5e8 100644
--- a/manual/lang.texi
+++ b/manual/lang.texi
@@ -827,25 +827,39 @@ These are the maximum values that can be represented by a
 @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}.