diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-29 22:08:17 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-29 22:08:17 +0300 |
commit | 28e3696e677bdef9c7daeda97463f4b6affa6f84 (patch) | |
tree | f895b765e2000f2543f9afe093ee7a8d48ebc277 /core/musl/files | |
parent | 662c0d1eef7bfeac8f6cd3a18e3b0b952a87ae7b (diff) | |
download | repository-28e3696e677bdef9c7daeda97463f4b6affa6f84.tar.gz |
musl: fix sources
Diffstat (limited to 'core/musl/files')
-rw-r--r-- | core/musl/files/__stack_chk_fail_local.c | 2 |
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(); } |