musl - an implementation of the standard library for Linux-based systems
blob: 485abf756d8df46f8d8133ba25ecf68118ec2544 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <features.h>
struct k_sigaction {
unsigned flags;
void (*handler)(int);
unsigned long mask[4];
void *unused;
};
hidden void __restore(), __restore_rt();
|