Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
wasi
libc-bottom-half
sources
abort.c
pretty
plain
permalink
blame
history
•
6 lines
•
135 B
1
#include <stdlib.h>
2
3
void abort(void) {
4
// wasm doesn't support signals, so just trap to halt the program.
5
__builtin_trap();
6
}