166b8afe49bb204e0c23cf35000d1b55a444b2c3
[musl] / mkstemp.c
1 #include <stdlib.h>
2
3 int mkstemp(char *template)
4 {
5         return __mkostemps(template, 0, 0);
6 }
7
8 weak_alias(mkstemp, mkstemp64);