diff options
Diffstat (limited to 'src/ucontext/ucontext_t.h')
-rw-r--r-- | src/ucontext/ucontext_t.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ucontext/ucontext_t.h b/src/ucontext/ucontext_t.h new file mode 100644 index 00000000..740df115 --- /dev/null +++ b/src/ucontext/ucontext_t.h @@ -0,0 +1,12 @@ +#include <ucontext.h> + +typedef struct ucontext_t { + struct ucontext_t * uc_link; + sigset_t uc_sigmask; + stack_t uc_stack; + mcontext_t uc_mcontext; +} ucontext_t; + +/* +XOPEN(400,700) +*/ |