aboutsummaryrefslogtreecommitdiff
path: root/core/musl
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-29 22:08:17 +0300
committerCem Keylan <cem@ckyln.com>2020-05-29 22:08:17 +0300
commit28e3696e677bdef9c7daeda97463f4b6affa6f84 (patch)
treef895b765e2000f2543f9afe093ee7a8d48ebc277 /core/musl
parent662c0d1eef7bfeac8f6cd3a18e3b0b952a87ae7b (diff)
downloadrepository-28e3696e677bdef9c7daeda97463f4b6affa6f84.tar.gz
musl: fix sources
Diffstat (limited to 'core/musl')
-rw-r--r--core/musl/checksums1
-rw-r--r--core/musl/files/__stack_chk_fail_local.c2
-rw-r--r--core/musl/sources1
3 files changed, 4 insertions, 0 deletions
diff --git a/core/musl/checksums b/core/musl/checksums
index 910381b4..93fe16af 100644
--- a/core/musl/checksums
+++ b/core/musl/checksums
@@ -4,3 +4,4 @@ c13407edd0e33be73cae72514cb234f8612e1c0e54401c9448daffd3a240158b queue.h
e1e498a79bf160a5766fa560f2b07b206fe89fe21a62600c77d72e00a6992f92 tree.h
d87d0cbb3690ae2c5d8cc218349fd8278b93855dd625deaf7ae50e320aad247c getconf.c
802b01b0349f6aa04cb02f78d01312921bc13f41b5acb88862a23b357e1706c6 getent
+299a7d75a09de3e2e11e7fb4acc3182e4a14e868093d2f30938fce9bfcff13da __stack_chk_fail_local.c
diff --git a/core/musl/files/__stack_chk_fail_local.c b/core/musl/files/__stack_chk_fail_local.c
new file mode 100644
index 00000000..2b403a6e
--- /dev/null
+++ b/core/musl/files/__stack_chk_fail_local.c
@@ -0,0 +1,2 @@
+extern void __stack_chk_fail(void);
+void __attribute__((visibility ("hidden"))) __stack_chk_fail_local(void) { __stack_chk_fail(); }
diff --git a/core/musl/sources b/core/musl/sources
index e09d2941..61aaa8ee 100644
--- a/core/musl/sources
+++ b/core/musl/sources
@@ -4,3 +4,4 @@ files/queue.h
files/tree.h
files/getconf.c
files/getent
+files/__stack_chk_fail_local.c