/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
Merge branch 'jk/perf-no-dups'
[git/git.git]
/
compat
/
mkdtemp.c
Commit
Line
Data
ca5bb5d5
SP
1
#include "../git-compat-util.h"
2
3
char *gitmkdtemp(char *template)
4
{
1f80c2af
5
if (!*mktemp(template) || mkdir(template, 0700))
ca5bb5d5
SP
6
return NULL;
7
return template;
8
}