summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-01-09 09:36:18 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-01-09 09:36:18 +0000
commit2779ce54b5436c694c5891356ddb04116924dbb2 (patch)
treea9a95debdf7659c653a283fe299330de4d9fdf0f /lib/libc/stdio
parentf3a3f1995fc652d4991e180d2ee2c132236ab6d7 (diff)
fix tmpnam() argument; kris@freebsd
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/tmpnam.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdio/tmpnam.3 b/lib/libc/stdio/tmpnam.3
index 05307cf9b99..4c26613a26f 100644
--- a/lib/libc/stdio/tmpnam.3
+++ b/lib/libc/stdio/tmpnam.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: tmpnam.3,v 1.6 1999/07/09 13:35:23 aaron Exp $
+.\" $OpenBSD: tmpnam.3,v 1.7 2000/01/09 09:36:17 deraadt Exp $
.\"
.\" Copyright (c) 1988, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -86,7 +86,7 @@ past.
is defined in the include file
.Aq Pa stdio.h .
If the argument
-.Fa s
+.Fa str
is
.Pf non- Dv NULL ,
the file name is copied to the buffer it references.
@@ -96,7 +96,7 @@ In either case,
returns a pointer to the file name.
.Pp
The buffer referenced by
-.Fa s
+.Fa str
is expected to be at least
.Dv L_tmpnam
bytes in length.