diff options
author | Thomas Preudhomme <thomas.preudhomme@foss.arm.com> | 2016-08-17 17:05:07 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-08-17 20:58:21 +0200 |
commit | 0e2e3c958c9861861f0c556eba6e896707978c5c (patch) | |
tree | 5d9f943fe67777768ddedb9a908e6dadec62992d /newlib/libc/stdlib/strtoul.c | |
parent | 8443fcd625a484791677c5b6883d70d92ae810e5 (diff) | |
download | cygnal-0e2e3c958c9861861f0c556eba6e896707978c5c.tar.gz cygnal-0e2e3c958c9861861f0c556eba6e896707978c5c.tar.bz2 cygnal-0e2e3c958c9861861f0c556eba6e896707978c5c.zip |
Fix pdf build failure wrt documentation of is*_l functions
make pdf on arm-none-eabi targets fails to build after the reorganization in
baf0c9fcb56e5cf8f54357bf8d8646b51b236886 to fold is*_l documentation in their
is* counterpart. This is due two issues:
1) newlib/libc/ctype/ctype.tex still including the def file for the long versions
2) missing angle brackets in .c files for some of is*_l functions
This patch fixes the issues and allows make pdf to succeeds.
Diffstat (limited to 'newlib/libc/stdlib/strtoul.c')
-rw-r--r-- | newlib/libc/stdlib/strtoul.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/strtoul.c b/newlib/libc/stdlib/strtoul.c index 062606f4e..aa5897e13 100644 --- a/newlib/libc/stdlib/strtoul.c +++ b/newlib/libc/stdlib/strtoul.c @@ -85,10 +85,10 @@ The alternate function <<_strtoul_r>> is a reentrant version. The extra argument <[reent]> is a pointer to a reentrancy structure. RETURNS -<<strtoul>>, <strtoul_l>> return the converted value, if any. If no +<<strtoul>>, <<strtoul_l>> return the converted value, if any. If no conversion was made, <<0>> is returned. -<<strtoul>>, <strtoul_l>> return <<ULONG_MAX>> if the magnitude of the +<<strtoul>>, <<strtoul_l>> return <<ULONG_MAX>> if the magnitude of the converted value is too large, and sets <<errno>> to <<ERANGE>>. PORTABILITY |