aboutsummaryrefslogtreecommitdiffstats
path: root/testing/efivar/musl-strndupa.patch
blob: 5fcc1847c24473025cee51d5519e37a624a8693a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- ./src/linux.c	2017-02-13 17:52:14.000000000 +0100
+++ ./src/linux.c	2017-02-18 04:42:13.893911649 +0100
@@ -44,6 +44,10 @@
 #include <efivar.h>
 #include <efiboot.h>
 
+#if !defined(__GLIBC__)
+#define strndupa(x,s) strncpy(alloca(strlen(x)+1),x,s)
+#endif
+
 #include "dp.h"
 #include "linux.h"
 #include "util.h"