//! By convention, main.zig is where your main function lives in the case that //! you are building an executable. If you are making a library, the convention //! is to delete this file and start with root.zig instead. //const std = @import("std"); export fn _start() callconv(.C) noreturn { while (true) {} } export fn fault_handler() callconv(.C) void { while (true) {} }