add mkostemp, mkstemps, and mkostemps functions and reorganize temp internals
[musl] / src / temp / mkstemp.c
1 #include <stdlib.h>
2 #include "libc.h"
3
4 int __mkostemps(char *, int, int);
5
6 int mkstemp(char *template)
7 {
8         return __mkostemps(template, 0, 0);
9 }
10
11 LFS64(mkstemp);