diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-06-23 16:12:05 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-06-23 16:14:53 +0100 |
commit | c7b1e4cbf2dbd335189a592b2fb865a8160f5c78 (patch) | |
tree | 1da2d3e51da6d9416aeef8addc688cc0d800b355 /newlib/libc/stdlib/itoa.c | |
parent | 42e040a448fc5a15ec1171abba8ad5eb7b3b6d38 (diff) | |
download | cygnal-c7b1e4cbf2dbd335189a592b2fb865a8160f5c78.tar.gz cygnal-c7b1e4cbf2dbd335189a592b2fb865a8160f5c78.tar.bz2 cygnal-c7b1e4cbf2dbd335189a592b2fb865a8160f5c78.zip |
Fix some mangled makedoc markup
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
* libc/stdlib/itoa.c: Fix makedoc markup.
* libc/stdlib/wcsnrtombs.c: Ditto.
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Diffstat (limited to 'newlib/libc/stdlib/itoa.c')
-rw-r--r-- | newlib/libc/stdlib/itoa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/itoa.c b/newlib/libc/stdlib/itoa.c index c7c9b8871..377834d03 100644 --- a/newlib/libc/stdlib/itoa.c +++ b/newlib/libc/stdlib/itoa.c @@ -11,7 +11,7 @@ ANSI_SYNOPSIS char *__itoa(int <[value]>, char *<[str]>, int <[base]>); DESCRIPTION -<<itoa>> converts the integer [<value>] to a null-terminated string +<<itoa>> converts the integer <[value]> to a null-terminated string using the specified base, which must be between 2 and 36, inclusive. If <[base]> is 10, <[value]> is treated as signed and the string will be prefixed with '-' if negative. For all other bases, <[value]> is treated as |