diff options
| author | Alejandro Sior <aho@sior.be> | 2022-05-21 12:05:07 +0200 |
|---|---|---|
| committer | Alejandro Sior <aho@sior.be> | 2022-05-21 12:05:07 +0200 |
| commit | 35c9df451d4f415632a4a1f64b06d1de12340687 (patch) | |
| tree | eae162590c9087639ba20b000d357cfbdcd0ea6a /rt/abort.ha | |
| parent | 68e5c0c5c9dc26e9c7ce4bf5252719ee8dc4b3ae (diff) | |
bios::drive: fix the read function
Diffstat (limited to 'rt/abort.ha')
| -rw-r--r-- | rt/abort.ha | 4 |
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(); +}; |
