1#define _BSD_SOURCE 2#include <stdlib.h> 3 4int mkstemps(char *template, int len) 5{ 6 return __mkostemps(template, len, 0); 7}