mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 07:12:15 +00:00
aarch64: fix mismatched type of ucontext_t uc_link member
This commit is contained in:
parent
1bc10ffeaa
commit
14edadb542
@ -59,7 +59,7 @@ struct sigaltstack {
|
|||||||
|
|
||||||
typedef struct __ucontext {
|
typedef struct __ucontext {
|
||||||
unsigned long uc_flags;
|
unsigned long uc_flags;
|
||||||
struct ucontext *uc_link;
|
struct __ucontext *uc_link;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
sigset_t uc_sigmask;
|
sigset_t uc_sigmask;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user