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