xref: /aosp_15_r20/external/musl/src/temp/mkstemps.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #define _BSD_SOURCE
2 #include <stdlib.h>
3 
mkstemps(char * template,int len)4 int mkstemps(char *template, int len)
5 {
6 	return __mkostemps(template, len, 0);
7 }
8