musl-tcc/src/temp/mkostemp.c

10 lines
161 B
C
Raw Permalink Normal View History

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