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, 8 insertions, 0 deletions
diff --git a/third_party/git/compat/mkdtemp.c b/third_party/git/compat/mkdtemp.c
new file mode 100644
index 0000000000..1136119592
--- /dev/null
+++ b/third_party/git/compat/mkdtemp.c
@@ -0,0 +1,8 @@
+#include "../git-compat-util.h"
+
+char *gitmkdtemp(char *template)
+{
+	if (!*mktemp(template) || mkdir(template, 0700))
+		return NULL;
+	return template;
+}