plan9port/src/lib9/opentemp.c

16 lines
159 B
C
Raw Normal View History

2004-03-21 14:05:38 +00:00
#include <u.h>
#include <libc.h>
int
opentemp(char *template)
{
2004-06-17 21:19:37 +00:00
int fd;
fd = mkstemp(template);
if(fd < 0)
return -1;
remove(template);
return fd;
2004-03-21 14:05:38 +00:00
}