xref: /third_party/musl/src/temp/mkostemp.c (revision 570af302)
1#define _BSD_SOURCE
2#include <stdlib.h>
3
4int mkostemp(char *template, int flags)
5{
6	return __mkostemps(template, 0, flags);
7}
8
9weak_alias(mkostemp, mkostemp64);
10