mirror of git://git.musl-libc.org/musl
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…
Reference in New Issue