aarch64: fix mismatched type of ucontext_t uc_link member

This commit is contained in:
William Pitcock 2018-01-31 23:29:24 +00:00 committed by Rich Felker
parent 1bc10ffeaa
commit 14edadb542
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ struct sigaltstack {
typedef struct __ucontext {
unsigned long uc_flags;
struct ucontext *uc_link;
struct __ucontext *uc_link;
stack_t uc_stack;
sigset_t uc_sigmask;
mcontext_t uc_mcontext;