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