diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-05-04 00:41:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-05-04 00:41:05 +0000 |
commit | e7da8489b97e84cabd9ba9e0d682aef8d3bc5980 (patch) | |
tree | 3f10ce2d716a3288a5bbba76b831fa724fd5b86b /manual | |
parent | 75cabb043fcf701bc7209678cd61013783838f9c (diff) | |
download | glibc-e7da8489b97e84cabd9ba9e0d682aef8d3bc5980.tar.gz glibc-e7da8489b97e84cabd9ba9e0d682aef8d3bc5980.tar.xz glibc-e7da8489b97e84cabd9ba9e0d682aef8d3bc5980.zip |
Remove @w from @itemize.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/arith.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/arith.texi b/manual/arith.texi index d33f04fae0..6c0402d680 100644 --- a/manual/arith.texi +++ b/manual/arith.texi @@ -51,7 +51,7 @@ These @code{typedef}s are in @file{stdint.h}. If you require that an integer be represented in exactly N bits, use one of the following types, with the obvious mapping to bit size and signedness: -@itemize @w +@itemize @item int8_t @item int16_t @item int32_t @@ -68,7 +68,7 @@ size, the corresponding above type does not exist. If you don't need a specific storage size, but want the smallest data structure with @emph{at least} N bits, use one of these: -@itemize @w +@itemize @item int8_least_t @item int16_least_t @item int32_least_t @@ -84,7 +84,7 @@ that allows the fastest access while having at least N bits (and among data structures with the same access speed, the smallest one), use one of these: -@itemize @w +@itemize @item int8_fast_t @item int16_fast_t @item int32_fast_t @@ -100,7 +100,7 @@ which it is being used, use one of the following. If you use these, you should write code that takes into account the variable size and range of the integer. -@itemize @w +@itemize @item intmax_t @item uintmax_t @end itemize |