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