mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
6 lines
135 B
C
Vendored
6 lines
135 B
C
Vendored
#include <stdlib.h>
|
|
|
|
void abort(void) {
|
|
// wasm doesn't support signals, so just trap to halt the program.
|
|
__builtin_trap();
|
|
}
|