summaryrefslogtreecommitdiff
path: root/manual/errno.texi
diff options
context:
space:
mode:
authorNicolas Boulenguez <nicolas.boulenguez@free.fr>2012-02-17 17:44:38 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-17 17:44:38 +0000
commitcc6e48bc7c8e7a349147d5ce7683591175134076 (patch)
treec2df9fa3e01548be4bebf1736d1040ce8405765d /manual/errno.texi
parent6dd8f3dca0dacac90815a8776142bd28ba59513e (diff)
Fix various problems with @deftypefun lines.
Diffstat (limited to 'manual/errno.texi')
-rw-r--r--manual/errno.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/errno.texi b/manual/errno.texi
index 3b0af0c384..70ce27761b 100644
--- a/manual/errno.texi
+++ b/manual/errno.texi
@@ -1585,7 +1585,7 @@ are not used.
@comment err.h
@comment BSD
-@deftypefun void vwarn (const char *@var{format}, va_list)
+@deftypefun void vwarn (const char *@var{format}, va_list @var{ap})
The @code{vwarn} function is just like @code{warn} except that the
parameters for the handling of the format string @var{format} are passed
in as an value of type @code{va_list}.
@@ -1606,7 +1606,7 @@ string is printed.
@comment err.h
@comment BSD
-@deftypefun void vwarnx (const char *@var{format}, va_list)
+@deftypefun void vwarnx (const char *@var{format}, va_list @var{ap})
The @code{vwarnx} function is just like @code{warnx} except that the
parameters for the handling of the format string @var{format} are passed
in as an value of type @code{va_list}.
@@ -1626,7 +1626,7 @@ are not used and that the program is exited even if @var{status} is zero.
@comment err.h
@comment BSD
-@deftypefun void verr (int @var{status}, const char *@var{format}, va_list)
+@deftypefun void verr (int @var{status}, const char *@var{format}, va_list @var{ap})
The @code{verr} function is just like @code{err} except that the
parameters for the handling of the format string @var{format} are passed
in as an value of type @code{va_list}.
@@ -1648,7 +1648,7 @@ string is printed.
@comment err.h
@comment BSD
-@deftypefun void verrx (int @var{status}, const char *@var{format}, va_list)
+@deftypefun void verrx (int @var{status}, const char *@var{format}, va_list @var{ap})
The @code{verrx} function is just like @code{errx} except that the
parameters for the handling of the format string @var{format} are passed
in as an value of type @code{va_list}.