musl - an implementation of the standard library for Linux-based systems
blob: b4d0fa5f9c4c1110f74613e10816d4daf98dc94b (
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[2];
void *unused;
};
hidden void __restore(), __restore_rt();
|