summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/funopen.34
-rw-r--r--lib/libc/stdio/printf.34
-rw-r--r--lib/libc/stdio/setbuf.34
-rw-r--r--lib/libc/stdio/stdio.34
4 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/stdio/funopen.3 b/lib/libc/stdio/funopen.3
index 4c4278c92db..268f415e939 100644
--- a/lib/libc/stdio/funopen.3
+++ b/lib/libc/stdio/funopen.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: funopen.3,v 1.6 1998/06/15 17:54:50 mickey Exp $
+.\" $OpenBSD: funopen.3,v 1.7 1999/05/12 13:26:47 aaron Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -60,7 +60,7 @@ Either
or
.Fa writefn
must be specified;
-the others can be given as an appropriately-typed
+the others can be given as an appropriately typed
.Dv NULL
pointer.
These
diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3
index f2b8b9ff547..49c906125f0 100644
--- a/lib/libc/stdio/printf.3
+++ b/lib/libc/stdio/printf.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: printf.3,v 1.15 1999/03/01 20:41:56 deraadt Exp $
+.\" $OpenBSD: printf.3,v 1.16 1999/05/12 13:26:48 aaron Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -682,6 +682,6 @@ interface is not portable.
.Pp
There is no way for printf to know the size of each argument passed. If
you use positional arguments you must ensure that all parameters, up to the
-last positionally-specified parameter, are used in the format string. This
+last positionally specified parameter, are used in the format string. This
allows for the format string to be parsed for this information. Failure
to do this will mean your code is non-portable and liable to fail.
diff --git a/lib/libc/stdio/setbuf.3 b/lib/libc/stdio/setbuf.3
index f6b235aceaa..513406c13f5 100644
--- a/lib/libc/stdio/setbuf.3
+++ b/lib/libc/stdio/setbuf.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: setbuf.3,v 1.4 1999/02/24 08:22:31 deraadt Exp $
+.\" $OpenBSD: setbuf.3,v 1.5 1999/05/12 13:26:48 aaron Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -75,7 +75,7 @@ When the first
operation occurs on a file,
.Xr malloc 3
is called,
-and an optimally-sized buffer is obtained.
+and an optimally sized buffer is obtained.
If a stream refers to a terminal
(as
.Em stdout
diff --git a/lib/libc/stdio/stdio.3 b/lib/libc/stdio/stdio.3
index 687a62ab659..3c33fe14ae0 100644
--- a/lib/libc/stdio/stdio.3
+++ b/lib/libc/stdio/stdio.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: stdio.3,v 1.6 1999/05/10 17:56:29 aaron Exp $
+.\" $OpenBSD: stdio.3,v 1.7 1999/05/12 13:26:48 aaron Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -134,7 +134,7 @@ device, as determined by the
function.
In fact,
.Em all
-freshly-opened streams that refer to terminal devices
+freshly opened streams that refer to terminal devices
default to line buffering, and
pending output to such streams is written automatically
whenever such an input stream is read.