TMPFILE(3S) DOMAIN/IX Reference Manual (SYS5) TMPFILE(3S)
NAME
tmpfile - create a temporary file
USAGE
#include <stdio.h>
FILE *tmpfile ()
DESCRIPTION
Tmpfile creates a temporary file with a name generated by
tmpnam(3S), and returns a corresponding FILE pointer. If
the file cannot be opened, an error message is printed using
perror(3C), and a NULL pointer is returned. The file will
automatically be deleted when the process using it ter-
minates. The file is opened for writing ("w+").
RELATED INFORMATION
creat(2), unlink(2), fopen(3S), mktemp(3C), perror(3C),
tmpnam(3S)
Printed 5/10/85 TMPFILE-1