summaryrefslogtreecommitdiff
path: root/share/man/man3/stdarg.3
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>1999-07-09 13:36:00 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>1999-07-09 13:36:00 +0000
commit078c2448197a826265f74828b3159d758f1f0ceb (patch)
treeef3b0d7b2b6fcf1328ac8953d9e2abf6431093ea /share/man/man3/stdarg.3
parent3610cb2f5b1eeb5e599fcca418780b43c2f30b6d (diff)
- remove all trailing whitespace
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
Diffstat (limited to 'share/man/man3/stdarg.3')
-rw-r--r--share/man/man3/stdarg.314
1 files changed, 7 insertions, 7 deletions
diff --git a/share/man/man3/stdarg.3 b/share/man/man3/stdarg.3
index 6b971897e07..630627bfb88 100644
--- a/share/man/man3/stdarg.3
+++ b/share/man/man3/stdarg.3
@@ -100,11 +100,11 @@ macro expands to an expression that has the type and value of the next
argument in the call.
The parameter
.Fa ap
-is the
+is the
.Em va_list Fa ap
initialized by
.Fn va_start .
-Each call to
+Each call to
.Fn va_arg
modifies
.Fa ap
@@ -112,7 +112,7 @@ so that the next call returns the next argument.
The parameter
.Fa type
is a type name specified so that the type of a pointer to an
-object that has the specified type can be obtained simply by
+object that has the specified type can be obtained simply by
adding a
.Dq \&*
to
@@ -126,9 +126,9 @@ random errors will occur.
.Pp
The first use of the
.Fn va_arg
-macro after that of the
+macro after that of the
.Fn va_start
-macro returns the argument after
+macro returns the argument after
.Fa last .
Successive invocations return the values of the remaining
arguments.
@@ -136,7 +136,7 @@ arguments.
The
.Fn va_end
macro handles a normal return from the function whose variable argument
-list was initialized by
+list was initialized by
.Fn va_start .
.Pp
The
@@ -186,7 +186,7 @@ These macros are
.Em not
compatible with the historic macros they replace.
A backward compatible version can be found in the include
-file
+file
.Aq Pa varargs.h .
.Sh BUGS
Unlike the