move __stdio_exit_needed to stdio_impl.h
[musl] / src / internal / ksigaction.h
1 /* This is the structure used for the rt_sigaction syscall on most archs,
2  * but it can be overridden by a file with the same name in the top-level
3  * arch dir for a given arch, if necessary. */
4 struct k_sigaction {
5         void (*handler)(int);
6         unsigned long flags;
7         void (*restorer)(void);
8         unsigned mask[2];
9 };
10
11 void __restore(), __restore_rt();