summaryrefslogtreecommitdiff
path: root/experimental/elfutils/musl-strndupa.patch
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/elfutils/musl-strndupa.patch')
-rw-r--r--experimental/elfutils/musl-strndupa.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/experimental/elfutils/musl-strndupa.patch b/experimental/elfutils/musl-strndupa.patch
new file mode 100644
index 000000000..e48fa2018
--- /dev/null
+++ b/experimental/elfutils/musl-strndupa.patch
@@ -0,0 +1,18 @@
+--- a/src/unstrip.c 2017-04-27 14:26:26.000000000 +0000
++++ b/src/unstrip.c 2017-05-05 15:51:33.515154220 +0000
+@@ -56,6 +56,15 @@
+ # define _(str) gettext (str)
+ #endif
+
++#ifndef strndupa
++#define strndupa(s, n) \
++ (__extension__ ({const char *__in = (s); \
++ size_t __len = strnlen (__in, (n)) + 1; \
++ char *__out = (char *) alloca (__len); \
++ __out[__len-1] = '\0'; \
++ (char *) memcpy (__out, __in, __len-1);}))
++#endif
++
+ /* Name and version of program. */
+ ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
+