overhaul internally-public declarations using wrapper headers
[musl] / src / temp / mkostemp.c
1 #define _BSD_SOURCE
2 #include <stdlib.h>
3 #include "libc.h"
4
5 int mkostemp(char *template, int flags)
6 {
7         return __mkostemps(template, 0, flags);
8 }
9
10 LFS64(mkostemp);