Use dashless git commands in setgitperms.perl
[git/dscho.git] / compat / mkdtemp.c
blob34d4b49818b0896b9db19b2b1387f142cbbbd42b
1 #include "../git-compat-util.h"
3 char *gitmkdtemp(char *template)
5 if (!mktemp(template) || mkdir(template, 0700))
6 return NULL;
7 return template;