musl-tcc/src/temp/mkstemp.c

9 lines
123 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <stdlib.h>
int mkstemp(char *template)
{
return __mkostemps(template, 0, 0);
}
weak_alias(mkstemp, mkstemp64);