mirror of
git://git.musl-libc.org/musl
synced 2024-12-15 11:15:07 +00:00
b6e59cd925
these were overlooked in the declarations overhaul work because they are not properly declared, and the current framework even allows their declared types to vary by arch. at some point this should be cleaned up, but I'm not sure what the right way would be.
11 lines
174 B
C
11 lines
174 B
C
#include <features.h>
|
|
|
|
struct k_sigaction {
|
|
unsigned flags;
|
|
void (*handler)(int);
|
|
unsigned long mask[4];
|
|
void (*restorer)();
|
|
};
|
|
|
|
hidden void __restore(), __restore_rt();
|