summaryrefslogtreecommitdiff
path: root/rt/abort.ha
diff options
context:
space:
mode:
Diffstat (limited to 'rt/abort.ha')
-rw-r--r--rt/abort.ha4
1 files changed, 4 insertions, 0 deletions
diff --git a/rt/abort.ha b/rt/abort.ha
index dbe5d76..798c26f 100644
--- a/rt/abort.ha
+++ b/rt/abort.ha
@@ -1,3 +1,7 @@
export @noreturn fn abort_fixed() void = {
halt();
};
+
+export @noreturn @symbol("rt.abort") fn abort_() void = {
+ halt();
+};