diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-19 03:20:45 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-19 03:20:45 +0300 |
commit | ac8e98a0299c571a78022195b8fd4f6cb75e64a1 (patch) | |
tree | 99a5dda666b2c68a64dbbd75f41844a25bbed0e9 /i686/musl/files | |
parent | e1af9f2c808433ec51fe1627fc186f0a10db5a43 (diff) | |
download | repository-ac8e98a0299c571a78022195b8fd4f6cb75e64a1.tar.gz |
musl: i686 fixes
Diffstat (limited to 'i686/musl/files')
-rw-r--r-- | i686/musl/files/__stack_chk_fail_local.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/i686/musl/files/__stack_chk_fail_local.c b/i686/musl/files/__stack_chk_fail_local.c new file mode 100644 index 00000000..2b403a6e --- /dev/null +++ b/i686/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(); } |