2000-05-18  Andreas Jaeger  <aj@suse.de>

	* manual/arith.texi (Parsing of Integers): Fix typo.
	Closes PR libc/1744, reported by blp@gnu.org.
This commit is contained in:
Andreas Jaeger 2000-05-18 17:09:13 +00:00
parent 1261b97d10
commit 600a745790
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2000-05-18 Andreas Jaeger <aj@suse.de>
* manual/arith.texi (Parsing of Integers): Fix typo.
Closes PR libc/1744, reported by blp@gnu.org.
2000-05-17 Jakub Jelinek <jakub@redhat.com>
* sysdeps/arm/bits/huge_val.h (HUGE_VAL, HUGE_VALF): Add

View file

@ -2083,7 +2083,7 @@ digits begins with @samp{0} (specifying octal radix), or @samp{0x} or
@samp{0X} (specifying hexadecimal radix); in other words, the same
syntax used for integer constants in C.
Otherwise @var{base} must have a value between @code{2} and @code{35}.
Otherwise @var{base} must have a value between @code{2} and @code{36}.
If @var{base} is @code{16}, the digits may optionally be preceded by
@samp{0x} or @samp{0X}. If base has no legal value the value returned
is @code{0l} and the global variable @code{errno} is set to @code{EINVAL}.