Add some missing files.

This commit is contained in:
rsc 2004-03-21 14:05:38 +00:00
parent 0fc65b37a1
commit 498bb22174
3 changed files with 35 additions and 0 deletions

9
src/lib9/opentemp.c Normal file
View file

@ -0,0 +1,9 @@
#include <u.h>
#include <libc.h>
int
opentemp(char *template)
{
return mkstemp(template);
}