summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/fflush.34
-rw-r--r--lib/libc/stdio/printf.310
-rw-r--r--lib/libc/stdio/putc.36
3 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/stdio/fflush.3 b/lib/libc/stdio/fflush.3
index cc26cb9fed7..2906bb30dbe 100644
--- a/lib/libc/stdio/fflush.3
+++ b/lib/libc/stdio/fflush.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: fflush.3,v 1.6 1998/04/28 20:58:00 fair Exp $
+.\" $NetBSD: fflush.3,v 1.7 1998/08/29 08:32:34 lukem Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -89,7 +89,7 @@ is set to indicate the error.
.Sh ERRORS
.Bl -tag -width Er
.It Bq Er EBADF
-.Fa Stream
+.Fa stream
is not an open stream, or, in the case of
.Fn fflush ,
not a stream open for writing.
diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3
index fd7a4484b71..3a0c82ccd47 100644
--- a/lib/libc/stdio/printf.3
+++ b/lib/libc/stdio/printf.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: printf.3,v 1.11 1998/08/28 22:21:23 perry Exp $
+.\" $NetBSD: printf.3,v 1.12 1998/08/29 08:32:34 lukem Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -83,7 +83,7 @@ The
family of functions produces output according to a
.Fa format
as described below.
-.Fn Printf
+.Fn printf
and
.Fn vprintf
write output to
@@ -120,7 +120,7 @@ the number of characters printed
.Ql \e0
used to end output to strings).
.Pp
-.Fn Asprintf
+.Fn asprintf
and
.Fn vasprintf
return a pointer to a buffer sufficiently large to hold the
@@ -135,7 +135,7 @@ will return -1 and set
.Fa ret
to be a NULL pointer.
.Pp
-.Fn Snprintf
+.Fn snprintf
and
.Fn vsnprintf
will write at most
@@ -150,7 +150,7 @@ if the return value is greater than or equal to the
argument, the string was too short
and some of the printed characters were discarded.
.Pp
-.Fn Sprintf
+.Fn sprintf
and
.Fn vsprintf
effectively assume an infinite
diff --git a/lib/libc/stdio/putc.3 b/lib/libc/stdio/putc.3
index bdfb6b6c4dc..116d9be9b8a 100644
--- a/lib/libc/stdio/putc.3
+++ b/lib/libc/stdio/putc.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: putc.3,v 1.4 1998/02/05 18:49:30 perry Exp $
+.\" $NetBSD: putc.3,v 1.5 1998/08/29 08:32:34 lukem Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -68,7 +68,7 @@ writes the character
to the output stream pointed to by
.Fa stream .
.Pp
-.Fn Putc
+.Fn putc
acts essentially identically to
.Fn fputc ,
but is a macro that expands in-line. It may evaluate
@@ -77,7 +77,7 @@ more than once, so arguments given to
.Fn putc
should not be expressions with potential side effects.
.Pp
-.Fn Putchar
+.Fn putchar
is identical to
.Fn putc
with an output stream of