diff options
author | Nicolas Boulenguez <nicolas.boulenguez@free.fr> | 2012-02-17 17:44:38 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-02-17 17:44:38 +0000 |
commit | cc6e48bc7c8e7a349147d5ce7683591175134076 (patch) | |
tree | c2df9fa3e01548be4bebf1736d1040ce8405765d /manual/errno.texi | |
parent | 6dd8f3dca0dacac90815a8776142bd28ba59513e (diff) | |
download | glibc-cc6e48bc7c8e7a349147d5ce7683591175134076.tar.gz |
Fix various problems with @deftypefun lines.
Diffstat (limited to 'manual/errno.texi')
-rw-r--r-- | manual/errno.texi | 8 |
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}. |