1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

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

@ -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 */