123456789101112131415161718192021222324252627282930313233343536 |
- #include <stdio.h>
- #include <stdlib.h>
- #include "../misc/internals/tempname.h"
- char * mkdtemp (char *template)
- {
- if (__gen_tempname (template, __GT_DIR))
-
- template[0] = '\0';
- return template;
- }
|