musl: Mark __restore(_rt) functions hidden on riscv.
https://www.openwall.com/lists/musl/2024/11/23/2
2 files changed, 4 insertions(+), 0 deletions(-)
lib
lib/libc/musl/src/signal/riscv32/restore.s+2
| ... | ... | @@ -1,7 +1,9 @@ |
| 1 | 1 | .global __restore |
| 2 | .hidden __restore |
| 2 | 3 | .type __restore, %function |
| 3 | 4 | __restore: |
| 4 | 5 | .global __restore_rt |
| 6 | .hidden __restore_rt |
| 5 | 7 | .type __restore_rt, %function |
| 6 | 8 | __restore_rt: |
| 7 | 9 | 	li a7, 139 # SYS_rt_sigreturn |
lib/libc/musl/src/signal/riscv64/restore.s+2
| ... | ... | @@ -1,7 +1,9 @@ |
| 1 | 1 | .global __restore |
| 2 | .hidden __restore |
| 2 | 3 | .type __restore, %function |
| 3 | 4 | __restore: |
| 4 | 5 | .global __restore_rt |
| 6 | .hidden __restore_rt |
| 5 | 7 | .type __restore_rt, %function |
| 6 | 8 | __restore_rt: |
| 7 | 9 | 	li a7, 139 # SYS_rt_sigreturn |