summaryrefslogtreecommitdiff
path: root/compat/strdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat/strdup.c')
-rw-r--r--compat/strdup.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/compat/strdup.c b/compat/strdup.c
new file mode 100644
index 0000000..f3fb978
--- /dev/null
+++ b/compat/strdup.c
@@ -0,0 +1,11 @@
+#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;
+}