]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/temp/mkstemps.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / temp / mkstemps.c
1 #define _BSD_SOURCE
2 #include <stdlib.h>
3
4 int mkstemps(char *template, int len)
5 {
6 return __mkostemps(template, len, 0);
7 }
8
9 weak_alias(mkstemps, mkstemps64);