]> git.ipfire.org Git - thirdparty/git.git/blob - compat/mkdtemp.c
Merge branch 'jk/escaped-wildcard-dwim'
[thirdparty/git.git] / compat / mkdtemp.c
1 #include "../git-compat-util.h"
2
3 char *gitmkdtemp(char *template)
4 {
5 if (!*mktemp(template) || mkdir(template, 0700))
6 return NULL;
7 return template;
8 }