mirror of git://git.musl-libc.org/musl
fix invalid usage of mcontext_t in powerpc signal.h
This commit is contained in:
parent
3fae236e00
commit
2df4f6f17b
|
@ -27,7 +27,7 @@ typedef struct __ucontext {
|
||||||
struct __ucontext *uc_link;
|
struct __ucontext *uc_link;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
int uc_pad[7];
|
int uc_pad[7];
|
||||||
struct mcontext_t *uc_regs;
|
mcontext_t *uc_regs;
|
||||||
|
|
||||||
sigset_t uc_sigmask;
|
sigset_t uc_sigmask;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue