mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-23 09:27:09 +00:00

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen, and dlmalloc, as well as a significant amount of new code.
11 lines
174 B
C
11 lines
174 B
C
#include <features.h>
|
|
|
|
struct k_sigaction {
|
|
unsigned flags;
|
|
void (*handler)(int);
|
|
unsigned long mask[4];
|
|
void (*restorer)();
|
|
};
|
|
|
|
hidden void __restore(), __restore_rt();
|