musl-tcc/src/temp/mkstemps.c

10 lines
157 B
C
Raw Normal View History

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