manual page distributed with 4.1BSD
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 16 May 1985 06:01:56 +0000 (22:01 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 16 May 1985 06:01:56 +0000 (22:01 -0800)
SCCS-vsn: lib/libc/stdio/mktemp.3 4.1

usr/src/lib/libc/stdio/mktemp.3 [new file with mode: 0644]

diff --git a/usr/src/lib/libc/stdio/mktemp.3 b/usr/src/lib/libc/stdio/mktemp.3
new file mode 100644 (file)
index 0000000..5c0d367
--- /dev/null
@@ -0,0 +1,22 @@
+.\"    @(#)mktemp.3    4.1 (Berkeley) %G%
+.\"
+.TH MKTEMP 3 
+.AT 3
+.SH NAME
+mktemp \- make a unique file name
+.SH SYNOPSIS
+.nf
+.B char *mktemp(template)
+.B char *template;
+.fi
+.SH DESCRIPTION
+.I Mktemp
+replaces
+.I template
+by a unique file name, and returns the
+address of the template.
+The template should look like a file name with six trailing
+X's, which will be replaced with the
+current process id and a unique letter.
+.SH "SEE ALSO"
+getpid(2)