123456789101112131415161718192021222324252627282930313233343536 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/stat.h>
- #include "../misc/internals/tempname.h"
- #ifdef __USE_BSD
- char * mkdtemp (char *template)
- {
- if (__gen_tempname (template, __GT_DIR, 0, 0, S_IRUSR | S_IWUSR | S_IXUSR))
- return NULL;
- else
- return template;
- }
- #endif
|