diff options
author | Jens Schweikhardt <schweikh@FreeBSD.org> | 2001-07-14 19:41:16 +0000 |
---|---|---|
committer | Jens Schweikhardt <schweikh@FreeBSD.org> | 2001-07-14 19:41:16 +0000 |
commit | c1f3e4bf21571a88d4269a87f57e3e4ff2ba3ef6 (patch) | |
tree | fb1031efffc2846e7cacb61180a01c78ece1c3e9 /share/man/man3/stdarg.3 | |
parent | 52353da871a1c6308e9596c9fc75e374413a6ac4 (diff) |
Removed whitespace at end-of-line; no content changes. I simply did
cd src/share; find man[1-9] -type f|xargs perl -pi -e 's/[ \t]+$//'
BTW, what editors are the culprits? I'm using vim and it shows
me whitespace at EOL in troff files with a thick blue block...
Reviewed by: Silence from cvs diff -b
MFC after: 7 days
Notes
Notes:
svn path=/head/; revision=79727
Diffstat (limited to 'share/man/man3/stdarg.3')
-rw-r--r-- | share/man/man3/stdarg.3 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/share/man/man3/stdarg.3 b/share/man/man3/stdarg.3 index 1ec79c759e1e..19cdb0afa8f6 100644 --- a/share/man/man3/stdarg.3 +++ b/share/man/man3/stdarg.3 @@ -99,11 +99,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 @@ -111,7 +111,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 * to .Fa type . @@ -124,9 +124,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. @@ -134,7 +134,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 @@ -185,7 +185,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 |