12345678910111213141516171819202122232425262728293031 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/stat.h>
- #include "../misc/internals/tempname.h"
- int mkstemp (char *template)
- {
- return __gen_tempname (template, __GT_FILE, S_IRUSR | S_IWUSR);
- }
|