mirror of
git://git.musl-libc.org/musl
synced 2025-01-09 16:19:50 +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.
12 lines
196 B
C
12 lines
196 B
C
#include <features.h>
|
|
|
|
struct k_sigaction {
|
|
void (*handler)(int);
|
|
unsigned long flags;
|
|
void (*restorer)(void);
|
|
unsigned mask[2];
|
|
};
|
|
|
|
hidden void __restore_rt();
|
|
#define __restore __restore_rt
|