aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.zig
blob: de602dd699b2b1674868c13363c92f747e87165c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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) {}
}