Merge branch 'jc/maint-t7406-rev-parse-max-count-huh' into maint-1.7.11
[git.git] / compat / mkdtemp.c
blob11361195925c674423309d40f343c88f58b7bc1e
1 #include "../git-compat-util.h"
3 char *gitmkdtemp(char *template)
5 if (!*mktemp(template) || mkdir(template, 0700))
6 return NULL;
7 return template;