From 32daf20b54744fd808fff8239b4a1d50e40ad027 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Wed, 28 Sep 2016 07:19:59 -0400 Subject: Minor correction to the "installed header hygiene" patches. * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally- deleted typedef ucontext_t. --- sysdeps/unix/sysv/linux/s390/sys/ucontext.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h index 0128d1fa55..35d30685d1 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h @@ -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 */ -- cgit v1.2.1