summaryrefslogtreecommitdiff
path: root/manual/lang.texi
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/lang.texi
parent6cbeae4719aeb3edb6143fe5dd6d2a5ab45c0248 (diff)
Prefer C99 names for long long limit macros.
Diffstat (limited to 'manual/lang.texi')
-rw-r--r--manual/lang.texi24
1 files changed, 19 insertions, 5 deletions
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}.