diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-27 21:57:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-27 21:57:41 +0000 |
commit | aaf2d58f0d5749cc06139b7e1db0b22881ba61bd (patch) | |
tree | bc799ab769e278dfdecc60b0bbf69c30a578d613 /lib/libc/stdio | |
parent | 584fd0812f68bd000624885be123bf263ed152ff (diff) |
make function names the correct case
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/fflush.3 | 4 | ||||
-rw-r--r-- | lib/libc/stdio/printf.3 | 10 | ||||
-rw-r--r-- | lib/libc/stdio/putc.3 | 6 | ||||
-rw-r--r-- | lib/libc/stdio/tmpnam.3 | 4 |
4 files changed, 12 insertions, 12 deletions
diff --git a/lib/libc/stdio/fflush.3 b/lib/libc/stdio/fflush.3 index a13e5f7478b..3649ef99c4c 100644 --- a/lib/libc/stdio/fflush.3 +++ b/lib/libc/stdio/fflush.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fflush.3,v 1.2 1996/08/19 08:32:25 tholo Exp $ +.\" $OpenBSD: fflush.3,v 1.3 1999/02/27 21:55:40 deraadt Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -85,7 +85,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 d4c753935d7..dd3a4f24054 100644 --- a/lib/libc/stdio/printf.3 +++ b/lib/libc/stdio/printf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: printf.3,v 1.13 1998/09/27 20:53:24 millert Exp $ +.\" $OpenBSD: printf.3,v 1.14 1999/02/27 21:55:46 deraadt Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -82,7 +82,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 @@ -119,7 +119,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 @@ -144,7 +144,7 @@ of 0, they set .Fa ret to be a NULL pointer. .Pp -.Fn Snprintf +.Fn snprintf and .Fn vsnprintf will write at most @@ -159,7 +159,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 5383f723e83..0c28835d0f7 100644 --- a/lib/libc/stdio/putc.3 +++ b/lib/libc/stdio/putc.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: putc.3,v 1.2 1996/08/19 08:32:58 tholo Exp $ +.\" $OpenBSD: putc.3,v 1.3 1999/02/27 21:55:47 deraadt Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -64,7 +64,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 @@ -73,7 +73,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 diff --git a/lib/libc/stdio/tmpnam.3 b/lib/libc/stdio/tmpnam.3 index 2c501aebe2c..c2a71d55933 100644 --- a/lib/libc/stdio/tmpnam.3 +++ b/lib/libc/stdio/tmpnam.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tmpnam.3,v 1.4 1998/03/12 20:17:42 deraadt Exp $ +.\" $OpenBSD: tmpnam.3,v 1.5 1999/02/27 21:55:50 deraadt Exp $ .\" .\" Copyright (c) 1988, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -131,7 +131,7 @@ if .Pf non- Dv NULL , is used to specify a file name prefix, which will be the first part of the created file name. -.Fn Tempnam +.Fn tempnam allocates memory in which to store the file name; the returned pointer may be used as a subsequent argument to .Xr free 3 . |