Boring whitespace fixes.

This commit is contained in:
wiz 2001-09-11 01:18:14 +00:00
parent 5aa5c17625
commit 3d6ca24ddb
2 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: intro.3,v 1.8 1999/03/15 08:22:21 garbled Exp $
.\" $NetBSD: intro.3,v 1.9 2001/09/11 01:18:14 wiz Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -60,7 +60,7 @@ option of the compiler.
The various libraries (followed by the loader flag):
.Bl -tag -width "libc (-lc)"
.It Em libc Pq Fl l Ns Ar c
Standard C library functions.
Standard C library functions.
When using the C compiler
.Xr cc 1 ,
it is not necessary
@ -93,7 +93,7 @@ a number of system call interfaces provided in previous releases of
have been included for source code compatibility.
Use of these routines should, for the most part, be avoided.
The manual page entry for each compatibility routine
indicates the proper interface to use.
indicates the proper interface to use.
.\" .It Em libkvm
.It Em libl Pq Fl l Ns Ar l
The library for

View File

@ -1,4 +1,4 @@
.\" $NetBSD: stdarg.3,v 1.8 2001/04/14 17:14:50 kleink Exp $
.\" $NetBSD: stdarg.3,v 1.9 2001/09/11 01:18:14 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -109,11 +109,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
@ -121,7 +121,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 .
@ -134,9 +134,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.
@ -161,7 +161,7 @@ macro returns no value.
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
or
.Fn va_copy .
@ -226,7 +226,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