about summary refs log tree commit diff
path: root/third_party/git/compat/mkdtemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/compat/mkdtemp.c')
-rw-r--r--third_party/git/compat/mkdtemp.c8
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 1136119592..0000000000
--- 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;
-}