about summary refs log tree commit diff
path: root/third_party/git/compat/strdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/compat/strdup.c')
-rw-r--r--third_party/git/compat/strdup.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/third_party/git/compat/strdup.c b/third_party/git/compat/strdup.c
deleted file mode 100644
index f3fb978eb3..0000000000
--- a/third_party/git/compat/strdup.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "../git-compat-util.h"
-
-char *gitstrdup(const char *s1)
-{
-	size_t len = strlen(s1) + 1;
-	char *s2 = malloc(len);
-
-	if (s2)
-		memcpy(s2, s1, len);
-	return s2;
-}