diff options
-rw-r--r-- | src/root.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/root.zig b/src/root.zig index 70ddf12..a68ef7c 100644 --- a/src/root.zig +++ b/src/root.zig @@ -63,7 +63,8 @@ pub fn launch(bytes: []align(@alignOf(std.elf.Elf64_Ehdr)) const u8) !usize { } pub fn end() noreturn { - ecall(100003, .{}); + _ = ecall(100003, .{}); + unreachable; } pub fn terminate(pid: u16, thread: usize) !void { |