diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-11-23 01:20:08 +0100 |
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2025-02-21 19:30:42 -0500 |
| commit | 362fc54572553254049b8e9d850725b232ed147d (patch) | |
| tree | ac4ccc92b9ecbb829510d53565ae97704f4865ee | |
| parent | f1cda422cd3917130da4df423c1fcb6927f0f8eb (diff) | |
| download | musl-362fc54572553254049b8e9d850725b232ed147d.tar.gz | |
riscv: mark __restore and __restore_rt hidden
| -rw-r--r-- | src/signal/riscv32/restore.s | 2 | ||||
| -rw-r--r-- | src/signal/riscv64/restore.s | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/signal/riscv32/restore.s b/src/signal/riscv32/restore.s index 40012c75..5a0af695 100644 --- a/src/signal/riscv32/restore.s +++ b/src/signal/riscv32/restore.s @@ -1,7 +1,9 @@ .global __restore +.hidden __restore .type __restore, %function __restore: .global __restore_rt +.hidden __restore_rt .type __restore_rt, %function __restore_rt: li a7, 139 # SYS_rt_sigreturn diff --git a/src/signal/riscv64/restore.s b/src/signal/riscv64/restore.s index 40012c75..5a0af695 100644 --- a/src/signal/riscv64/restore.s +++ b/src/signal/riscv64/restore.s @@ -1,7 +1,9 @@ .global __restore +.hidden __restore .type __restore, %function __restore: .global __restore_rt +.hidden __restore_rt .type __restore_rt, %function __restore_rt: li a7, 139 # SYS_rt_sigreturn |
