1234567891011121314151617181920212223242526272829303132333435363738 |
- #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, S_IRUSR | S_IWUSR | S_IXUSR))
- return NULL;
- else
- return template;
- }
- #endif
|