Sign in
googlers
/
jrn
/
git
/
49bc8ce539b24fc8dccf92bf0e23d184a8d07d4b
/
.
/
compat
/
mkdtemp.c
blob: 11361195925c674423309d40f343c88f58b7bc1e [
file
] [
log
] [
blame
]
#include
"../git-compat-util.h"
char
*
gitmkdtemp
(
char
*
template
)
{
if
(!*
mktemp
(
template
)
||
mkdir
(
template
,
0700
))
return
NULL
;
return
template
;
}