eliminate protected-visibility data in libc.so with vis.h preinclude
[musl.git] / src / temp / mkstemps.c
blobfda710b0d9edafc68ad2fef681e171ff87205452
1 #define _BSD_SOURCE
2 #include <stdlib.h>
3 #include "libc.h"
5 int __mkostemps(char *, int, int);
7 int mkstemps(char *template, int len)
9 return __mkostemps(template, len, 0);
12 LFS64(mkstemps);