123456789101112131415161718192021222324252627282930 |
- #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, 0, 0, S_IRUSR | S_IWUSR);
- }
|