Minor correction to the "installed header hygiene" patches.

* sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally-
	deleted typedef ucontext_t.
This commit is contained in:
Zack Weinberg 2016-09-28 07:19:59 -04:00
parent e33a23fbe8
commit 32daf20b54
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2016-09-28 Zack Weinberg <zackw@panix.com>
* sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally-
deleted typedef ucontext_t.
2016-09-26 Adhemerval Zanella <adhemerval.zanella@linaro.org>
* sysdeps/unix/sysdep.h (__INTERNAL_SYSCALL0): New macro.

View File

@ -74,14 +74,14 @@ typedef struct
} mcontext_t;
/* Userlevel context. */
struct ucontext
typedef struct ucontext
{
unsigned long int uc_flags;
struct ucontext *uc_link;
stack_t uc_stack;
mcontext_t uc_mcontext;
__sigset_t uc_sigmask;
};
} ucontext_t;
#endif /* sys/ucontext.h */