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/arith.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/arith.texi')
-rw-r--r-- | manual/arith.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/arith.texi b/manual/arith.texi index e160438..e59da41 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. |