diff options
Diffstat (limited to 'third_party/git/compat/mkdtemp.c')
-rw-r--r-- | third_party/git/compat/mkdtemp.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/third_party/git/compat/mkdtemp.c b/third_party/git/compat/mkdtemp.c deleted file mode 100644 index 11361195925c..000000000000 --- a/third_party/git/compat/mkdtemp.c +++ /dev/null @@ -1,8 +0,0 @@ -#include "../git-compat-util.h" - -char *gitmkdtemp(char *template) -{ - if (!*mktemp(template) || mkdir(template, 0700)) - return NULL; - return template; -} |