aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/m68k/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/m68k/sys')
-rw-r--r--sysdeps/m68k/sys/ucontext.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/sysdeps/m68k/sys/ucontext.h b/sysdeps/m68k/sys/ucontext.h
index 4f185ce..2b70e72 100644
--- a/sysdeps/m68k/sys/ucontext.h
+++ b/sysdeps/m68k/sys/ucontext.h
@@ -21,16 +21,10 @@
#define _SYS_UCONTEXT_H 1
#include <features.h>
-#include <signal.h>
-/* We need the signal context definitions even if they are not exposed
- by <signal.h>. */
-#include <bits/types/__sigset_t.h>
+#include <bits/types/sigset_t.h>
#include <bits/sigcontext.h>
-#include <bits/sigstack.h>
-#include <bits/types/struct_sigstack.h>
#include <bits/types/stack_t.h>
-#include <bits/ss_flags.h>
/* Type for general register. */
@@ -112,7 +106,7 @@ typedef struct ucontext
{
unsigned long int uc_flags;
struct ucontext *uc_link;
- __sigset_t uc_sigmask;
+ sigset_t uc_sigmask;
stack_t uc_stack;
mcontext_t uc_mcontext;
long int uc_filler[201];