blob: 8a11964cd40f52f34e70d7fca44ba32f751ccf9d [file] [log] [blame]
#include <stdlib.h>
#include "libc.h"
int __mkostemps(char*, int, int);
int mkstemp(char* template) {
return __mkostemps(template, 0, 0);
}
LFS64(mkstemp);