mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-18 03:41:05 +00:00

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen, and dlmalloc, as well as a significant amount of new code.
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[];
|