fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / temp / mkstemp.c
1 #include <stdlib.h>
2
3 int mkstemp(char *template)
4 {
5         return __mkostemps(template, 0, 0);
6 }