github.com/afumu/libc@v0.0.6/musl/src/temp/mkostemp.c (about) 1 #define _BSD_SOURCE 2 #include <stdlib.h> 3 4 int mkostemp(char *template, int flags) 5 { 6 return __mkostemps(template, 0, flags); 7 } 8 9 weak_alias(mkostemp, mkostemp64);