mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 04:05:05 +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
186 B
C
11 lines
186 B
C
#include <features.h>
|
|
|
|
struct k_sigaction {
|
|
void (*handler)(int);
|
|
unsigned long flags;
|
|
void *restorer;
|
|
unsigned mask[2];
|
|
};
|
|
|
|
extern hidden unsigned char __restore[], __restore_rt[];
|