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