diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-02-22 21:04:27 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-02-22 21:04:27 +0000 |
commit | 7bb764bcb177f580e9f676680423ed3ddb13d8e7 (patch) | |
tree | 926aac000cf93fa61fce26084d3cf54de99de7fa /manual/lang.texi | |
parent | 6cbeae4719aeb3edb6143fe5dd6d2a5ab45c0248 (diff) | |
download | glibc-7bb764bcb177f580e9f676680423ed3ddb13d8e7.zip glibc-7bb764bcb177f580e9f676680423ed3ddb13d8e7.tar.gz glibc-7bb764bcb177f580e9f676680423ed3ddb13d8e7.tar.bz2 |
Prefer C99 names for long long limit macros.
Diffstat (limited to 'manual/lang.texi')
-rw-r--r-- | manual/lang.texi | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/manual/lang.texi b/manual/lang.texi index 9bc9871..b93ad5b 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}. |