plan9port/src/lib9/opentemp.c

10 lines
95 B
C
Raw Normal View History

2004-03-21 14:05:38 +00:00
#include <u.h>
#include <libc.h>
int
opentemp(char *template)
{
return mkstemp(template);
}