diff options
Diffstat (limited to 'third_party/git/compat/mkdtemp.c')
-rw-r--r-- | third_party/git/compat/mkdtemp.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/third_party/git/compat/mkdtemp.c b/third_party/git/compat/mkdtemp.c new file mode 100644 index 000000000000..11361195925c --- /dev/null +++ b/third_party/git/compat/mkdtemp.c @@ -0,0 +1,8 @@ +#include "../git-compat-util.h" + +char *gitmkdtemp(char *template) +{ + if (!*mktemp(template) || mkdir(template, 0700)) + return NULL; + return template; +} |