diff options
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/sys/ucontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/sys/ucontext.h b/sysdeps/i386/sys/ucontext.h index fb5df11965..be8c7e5408 100644 --- a/sysdeps/i386/sys/ucontext.h +++ b/sysdeps/i386/sys/ucontext.h @@ -126,10 +126,10 @@ typedef struct #undef __ctxt /* Userlevel context. */ -typedef struct ucontext +typedef struct ucontext_t { unsigned long int uc_flags; - struct ucontext *uc_link; + struct ucontext_t *uc_link; sigset_t uc_sigmask; stack_t uc_stack; mcontext_t uc_mcontext; |