summaryrefslogtreecommitdiff
path: root/manual/stdio.texi
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2013-02-11 14:12:47 -0800
committerRoland McGrath <roland@hack.frob.com>2013-02-11 14:16:43 -0800
commit8ded91fb377ad48c66e8b44929af7214f40f3557 (patch)
tree1500db52510dba70137440de0b3635d75a8e91fa /manual/stdio.texi
parentfe77fe6d5155d224edfebbccdbfbc68f62e750dc (diff)
Fix some errors in declarations in the manual.
Diffstat (limited to 'manual/stdio.texi')
-rw-r--r--manual/stdio.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/stdio.texi b/manual/stdio.texi
index 7b436f080b..3f9be9bc58 100644
--- a/manual/stdio.texi
+++ b/manual/stdio.texi
@@ -834,7 +834,7 @@ function except that it does not implicitly lock the stream.
@comment wchar.h
@comment POSIX
-@deftypefun wint_t fputwc_unlocked (wint_t @var{wc}, FILE *@var{stream})
+@deftypefun wint_t fputwc_unlocked (wchar_t @var{wc}, FILE *@var{stream})
The @code{fputwc_unlocked} function is equivalent to the @code{fputwc}
function except that it does not implicitly lock the stream.
@@ -3853,7 +3853,7 @@ as an argument to receive a string read under control of the @samp{%s},
@comment wchar.h
@comment ISO
-@deftypefun int swscanf (const wchar_t *@var{ws}, const char *@var{template}, @dots{})
+@deftypefun int swscanf (const wchar_t *@var{ws}, const wchar_t *@var{template}, @dots{})
This is like @code{wscanf}, except that the characters are taken from the
null-terminated string @var{ws} instead of from a stream. Reaching the
end of the string is treated as an end-of-file condition.