mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-06-15 10:29:47 +00:00
7 lines
139 B
C
7 lines
139 B
C
#include <stdlib.h>
|
|
|
|
void abort(void) {
|
|
// WASI doesn't yet support signals, so just trap to halt the program.
|
|
__builtin_trap();
|
|
}
|