rework langinfo code for ABI compat and for use by time code
[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 };