aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libc/musl/src/string/strdup.c
diff options
context:
space:
mode:
authorJukka Jylänki <jujjyl@gmail.com>2014-03-16 04:05:38 +0200
committerJukka Jylänki <jujjyl@gmail.com>2014-03-28 23:06:17 -0400
commit0967703fd279255e2f479e6bba9bb7ef48e1c7d6 (patch)
treef8352015292db760801067f8474598d463bbcf18 /system/lib/libc/musl/src/string/strdup.c
parentc4363b595cb2529345e3248b1f374595e83953ff (diff)
Migrate to using musl 0.9.13 strdup and strndup for better asm.js performace.
Diffstat (limited to 'system/lib/libc/musl/src/string/strdup.c')
-rw-r--r--system/lib/libc/musl/src/string/strdup.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/string/strdup.c b/system/lib/libc/musl/src/string/strdup.c
new file mode 100644
index 00000000..dd5f80c1
--- /dev/null
+++ b/system/lib/libc/musl/src/string/strdup.c
@@ -0,0 +1,13 @@
+#include <stdlib.h>
+#include <string.h>
+#include "libc.h"
+
+char *__strdup(const char *s)
+{
+ size_t l = strlen(s);
+ char *d = malloc(l+1);
+ if (!d) return NULL;
+ return memcpy(d, s, l+1);
+}
+
+weak_alias(__strdup, strdup);