diff options
Diffstat (limited to 'libc-top-half/musl/arch/sh/ksigaction.h')
-rw-r--r-- | libc-top-half/musl/arch/sh/ksigaction.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libc-top-half/musl/arch/sh/ksigaction.h b/libc-top-half/musl/arch/sh/ksigaction.h new file mode 100644 index 0000000..714ae61 --- /dev/null +++ b/libc-top-half/musl/arch/sh/ksigaction.h @@ -0,0 +1,10 @@ +#include <features.h> + +struct k_sigaction { + void (*handler)(int); + unsigned long flags; + void *restorer; + unsigned mask[2]; +}; + +extern hidden unsigned char __restore[], __restore_rt[]; |