diff options
Diffstat (limited to 'third_party/git/compat/strdup.c')
-rw-r--r-- | third_party/git/compat/strdup.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/git/compat/strdup.c b/third_party/git/compat/strdup.c new file mode 100644 index 000000000000..f3fb978eb3cc --- /dev/null +++ b/third_party/git/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; +} |