diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-10-16 19:13:10 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-10-16 19:13:10 +0200 |
commit | fb60c0ae3c0e1fe72a1758c9ce7541cab1d7ff13 (patch) | |
tree | 2065a542c8418d2f1681f261f4a5f5af68506ddd /doc | |
parent | do not assume that size(void*) == size(long) (diff) | |
download | slibc-fb60c0ae3c0e1fe72a1758c9ce7541cab1d7ff13.tar.gz slibc-fb60c0ae3c0e1fe72a1758c9ce7541cab1d7ff13.tar.bz2 slibc-fb60c0ae3c0e1fe72a1758c9ce7541cab1d7ff13.tar.xz |
inf: (U)INT_LEAST/_FAST{N}_C does not exist, (U)INT{N}_C is used
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/info/chap/integer-types.texinfo | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/info/chap/integer-types.texinfo b/doc/info/chap/integer-types.texinfo index 6f75a5c..af612c0 100644 --- a/doc/info/chap/integer-types.texinfo +++ b/doc/info/chap/integer-types.texinfo @@ -256,7 +256,7 @@ The types are as narrow as possible, they do not however need to use two's complement. Numerical literals, without type suffixes, can be @sc{CPP}-safely casted to their type with -the macros @code{INT_LEAST@i{N}_C(value)}. +the macros @code{INT@i{N}_C(value)}. Types where @i{N} is 8, 16, 32, or 64 are guaranteed to be defined. @@ -280,7 +280,7 @@ Unsigned integer types with ranges of at least as narrow as possible. Numerical literals, without type suffixes, can be @sc{CPP}-safely casted to their type with the macros -@code{UINT_LEAST@i{N}_C(value)}. +@code{UINT@i{N}_C(value)}. Types where @i{N} is 8, 16, 32, or 64 are guaranteed to be defined. @@ -302,7 +302,7 @@ Signed integer types with ranges of at least They do not need to use two's complement. Numerical literals, without type suffixes, can be @sc{CPP}-safely casted to their type with -the macros @code{INT_FAST@i{N}_C(value)}. +the macros @code{INT@i{N}_C(value)}. Types where @i{N} is 8, 16, 32, or 64 are guaranteed to be defined. @@ -334,7 +334,7 @@ Signed integer types with ranges of at least [0, @code{UINT@i{N}_MAX}]. Numerical literals, without type suffixes, can be @sc{CPP}-safely casted to their type with the macros -@code{UINT_FAST@i{N}_C(value)}. +@code{UINT@i{N}_C(value)}. Types where @i{N} is 8, 16, 32, or 64 are guaranteed to be defined. |