aboutsummaryrefslogtreecommitdiff
path: root/core/musl/files
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/files
parent662c0d1eef7bfeac8f6cd3a18e3b0b952a87ae7b (diff)
downloadrepository-28e3696e677bdef9c7daeda97463f4b6affa6f84.tar.gz
musl: fix sources
Diffstat (limited to 'core/musl/files')
-rw-r--r--core/musl/files/__stack_chk_fail_local.c2
1 files changed, 2 insertions, 0 deletions
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(); }