summaryrefslogtreecommitdiff
path: root/rt/abort.ha
blob: 798c26f4d5679869ef1a78cd952b89899e1d8422 (plain)
1
2
3
4
5
6
7
export @noreturn fn abort_fixed() void = {
	halt();
};

export @noreturn @symbol("rt.abort") fn abort_() void = {
	halt();
};