Sign in
code
/
git
/
eafa29b7cb27fa0e14d9629e66d6866292620113
/
.
/
compat
/
mkdtemp.c
blob: 34d4b49818b0896b9db19b2b1387f142cbbbd42b [
file
]
#include
"../git-compat-util.h"
char
*
gitmkdtemp
(
char
*
template
)
{
if
(!
mktemp
(
template
)
||
mkdir
(
template
,
0700
))
return
NULL
;
return
template
;
}