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[];
|