| 1 | export fn main(r0: u32, r1: u32, atags: u32) callconv(.c) noreturn { |
| 2 | _ = r0; |
| 3 | _ = r1; |
| 4 | _ = atags; |
| 5 | unreachable; // never gets run so it doesn't matter |
| 6 | } |
| 7 | pub fn panic(msg: []const u8, error_return_trace: ?*@import("std").builtin.StackTrace, _: ?usize) noreturn { |
| 8 | _ = msg; |
| 9 | _ = error_return_trace; |
| 10 | while (true) {} |
| 11 | } |